/**
 * FC Lokomotiv Sofia - Styles
 * Carousel with Offset Design, Fully Responsive
 */

:root {
    --fcb-primary: #C8102E;
    --fcb-secondary: #1A1A1A;
    --fcb-accent: #FFD700;
    --fcb-white: #ffffff;
    --fcb-gray-100: #f8f9fa;
    --fcb-gray-200: #e9ecef;
    --fcb-gray-300: #dee2e6;
    --fcb-gray-600: #6c757d;
    --fcb-gray-800: #343a40;
    --fcb-success: #28a745;
    --fcb-warning: #ffc107;
    --fcb-danger: #dc3545;
    --fcb-radius: 16px;
    --fcb-radius-sm: 8px;
    --fcb-shadow: 0 4px 24px rgba(0,0,0,0.12);
    --fcb-shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
    --fcb-transition: cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

/* =============================================================================
   MATCHES CAROUSEL
   ============================================================================= */
.fcb-matches-carousel-wrapper {
    padding: 20px 0;
    position: relative;
}

.fcb-carousel-grid {
    display: grid;
    grid-template-columns: minmax(340px, 1.1fr) 2fr;
    gap: 20px;
    align-items: start;
}

/* Featured Upcoming Match */
.fcb-carousel-featured {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fcb-featured-match {
    background: linear-gradient(135deg, #6b1525 0%, #8b1a2b 40%, #a01e32 100%);
    border-radius: var(--fcb-radius);
    position: relative;
    overflow: hidden;
    display: flex;
    min-height: 280px;
}

.fcb-featured-content {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    z-index: 2;
    flex: 1;
    max-width: 55%;
}

.fcb-featured-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--fcb-white);
}

.fcb-featured-date {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    font-weight: 400;
}

.fcb-featured-venue {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
}

.fcb-featured-teams {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: auto;
}

.fcb-featured-teams img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.fcb-featured-btn {
    display: inline-block;
    color: var(--fcb-white);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    padding-bottom: 2px;
    margin-top: 16px;
    transition: all var(--fcb-transition);
    align-self: flex-start;
}

.fcb-featured-btn:hover {
    border-bottom-color: var(--fcb-white);
}

/* Player image overlapping right side */
.fcb-featured-player {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
    height: 110%;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.fcb-featured-player img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

/* Featured card – LIVE state */
.fcb-featured-live {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.fcb-featured-live-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: var(--fcb-danger, #e74c3c);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fcb-featured-live-label .fcb-live-dot {
    width: 10px;
    height: 10px;
    background: var(--fcb-danger, #e74c3c);
    border-radius: 50%;
    animation: fcb-pulse 1.5s infinite;
    flex-shrink: 0;
}

.fcb-live-minute {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    margin-left: 4px;
}

.fcb-featured-live-score {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--fcb-white);
    line-height: 1;
}

.fcb-featured-live-score .fcb-score-num {
    font-size: 42px;
    font-weight: 800;
}

.fcb-live-score-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.fcb-live-scorers {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    line-height: 1.3;
    text-align: center;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fcb-live-separator {
    font-size: 32px;
    font-weight: 800;
    color: rgba(255,255,255,0.5);
    align-self: flex-start;
}

/* Next match – LIVE state */
.fcb-next-match-live {
    border: 2px solid var(--fcb-danger, #e74c3c);
}

.fcb-next-live-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--fcb-danger, #e74c3c);
    font-weight: 700;
}

.fcb-next-live-label .fcb-live-dot {
    width: 8px;
    height: 8px;
    background: var(--fcb-danger, #e74c3c);
    border-radius: 50%;
    animation: fcb-pulse 1.5s infinite;
    flex-shrink: 0;
}

.fcb-next-live-score {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
    font-size: 28px;
    font-weight: 800;
    color: var(--fcb-danger, #e74c3c);
}

.fcb-next-live-score .fcb-live-score-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.fcb-next-live-score .fcb-live-scorers {
    font-size: 10px;
    font-weight: 500;
    color: var(--fcb-gray-500, #6c757d);
    max-width: 100px;
}

.fcb-next-live-score .fcb-live-separator {
    font-size: 22px;
    color: inherit;
    opacity: 0.6;
}

.fcb-next-live-score .fcb-live-minute {
    font-size: 12px;
    font-weight: 600;
    color: var(--fcb-gray-500, #6c757d);
    display: block;
    width: 100%;
    text-align: center;
}

/* Pagination dots */
.fcb-featured-dots {
    display: flex;
    gap: 8px;
    padding-left: 4px;
}

.fcb-dot {
    width: 28px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,0.3);
    transition: all var(--fcb-transition);
}

.fcb-dot-active {
    background: var(--fcb-primary);
    width: 36px;
}

/* Past Matches Carousel */
.fcb-carousel-past {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 12px;
}

.fcb-carousel-past .fcb-results-swiper {
    flex: 1;
    overflow: hidden;
}

/* Navigation arrow */
.fcb-carousel-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.25);
    background: transparent;
    color: var(--fcb-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--fcb-transition);
    flex-shrink: 0;
    align-self: center;
}

.fcb-carousel-next:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

/* Result Cards - Past Matches */
.fcb-result-card {
    background: #f2f2f2;
    border-radius: 16px;
    padding: 28px 24px 22px;
    position: relative;
    transition: all var(--fcb-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.fcb-result-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--fcb-shadow-lg);
}

.fcb-result-label {
    font-size: 16px;
    font-weight: 700;
    font-style: italic;
    color: #1a1a1a;
    margin-bottom: 4px;
    line-height: 1.2;
}

.fcb-result-date {
    font-size: 14px;
    color: #1a1a1a;
    font-weight: 400;
    margin-bottom: 0;
}

/* Score row: number - logos - number */
.fcb-result-score-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 1;
    padding: 20px 0 16px;
}

.fcb-score-num {
    font-size: 64px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1;
    min-width: 44px;
    text-align: center;
    letter-spacing: -1px;
}

.fcb-score-logos {
    display: flex;
    align-items: center;
    gap: 2px;
}

.fcb-score-logos img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.fcb-result-link {
    display: inline-block;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid #d9d9d9;
    transition: color var(--fcb-transition);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1.5px;
}

.fcb-result-link:hover {
    color: var(--fcb-primary);
}

/* =============================================================================
   STANDINGS TABLE - DARK THEME
   ============================================================================= */
.fcb-standings-wrapper {
    background: #1e1e1e;
    border-radius: var(--fcb-radius);
    padding: 24px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.fcb-standings-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.fcb-standings-table th,
.fcb-standings-table td {
    padding: 14px 10px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    white-space: nowrap;
}

.fcb-standings-table th {
    background: transparent;
    font-weight: 500;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 16px;
}

.fcb-standings-table td {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
}

.fcb-standings-table .fcb-col-pos {
    font-weight: 700;
    color: var(--fcb-white);
    width: 40px;
}

.fcb-standings-table .fcb-col-team {
    text-align: left;
    min-width: 180px;
    color: var(--fcb-white);
    font-weight: 500;
}

.fcb-standings-table .fcb-col-team img {
    vertical-align: middle;
    margin-right: 12px;
}

.fcb-standings-table .fcb-col-goals {
    color: rgba(255,255,255,0.6);
}

.fcb-standings-table .fcb-col-gd {
    color: rgba(255,255,255,0.6);
}

.fcb-standings-table .fcb-col-pts {
    font-size: 15px;
    font-weight: 700;
    color: var(--fcb-white);
}

/* Our team row highlight */
.fcb-standings-table .fcb-our-team-row {
    background: rgba(255,255,255,0.04);
}

.fcb-standings-table .fcb-our-team-row td {
    color: var(--fcb-white);
    font-weight: 600;
}

/* Next opponent column */
.fcb-standings-table .fcb-col-next {
    width: 40px;
}

.fcb-team-logo-small {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Form Badges */
.fcb-form-badges {
    display: flex;
    gap: 4px;
    justify-content: center;
}

.fcb-form-badge {
    width: 26px;
    height: 26px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--fcb-white);
}

.fcb-form-win { background: #2d8a4e; }
.fcb-form-draw { background: #5a5a5a; }
.fcb-form-loss { background: #c0392b; }

/* Standings Legend */
.fcb-standings-legend {
    display: flex;
    gap: 28px;
    padding: 20px 0 4px;
    margin-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.fcb-legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.5);
}

.fcb-legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.fcb-legend-championship .fcb-legend-dot { background: #2d8a4e; }
.fcb-legend-conference .fcb-legend-dot { background: #3498db; }
.fcb-legend-relegation .fcb-legend-dot { background: #e67e22; }

/* =============================================================================
   PLAYERS GRID
   ============================================================================= */
.fcb-players-wrapper {
    padding: 20px 0;
}

.fcb-position-title {
    font-size: 24px;
    margin: 32px 0 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--fcb-primary);
    color: var(--fcb-secondary);
}

.fcb-players-grid {
    display: grid;
    gap: 24px;
}

.fcb-cols-2 { grid-template-columns: repeat(2, 1fr); }
.fcb-cols-3 { grid-template-columns: repeat(3, 1fr); }
.fcb-cols-4 { grid-template-columns: repeat(4, 1fr); }
.fcb-cols-5 { grid-template-columns: repeat(5, 1fr); }

.fcb-player-card {
    background: var(--fcb-white);
    border-radius: var(--fcb-radius);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--fcb-shadow);
    transition: all var(--fcb-transition);
}

.fcb-player-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--fcb-shadow-lg);
}

.fcb-player-image {
    position: relative;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--fcb-gray-100) 0%, var(--fcb-gray-200) 100%);
    overflow: hidden;
}

.fcb-player-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--fcb-transition);
}

.fcb-player-card:hover .fcb-player-image img {
    transform: scale(1.05);
}

.fcb-player-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fcb-gray-300);
}

.fcb-player-placeholder svg {
    width: 60%;
    height: 60%;
}

.fcb-player-number {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: var(--fcb-primary);
    color: var(--fcb-white);
    font-size: 24px;
    font-weight: 700;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fcb-player-age-group {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--fcb-accent);
    color: var(--fcb-secondary);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
}

.fcb-player-info {
    padding: 20px;
    text-align: center;
}

.fcb-player-name {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--fcb-secondary);
}

.fcb-player-stats-mini {
    display: flex;
    justify-content: center;
    gap: 16px;
    font-size: 13px;
    color: var(--fcb-gray-600);
}

/* =============================================================================
   PLAYER PROFILE
   ============================================================================= */
.fcb-player-profile {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.fcb-player-hero {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    background: linear-gradient(135deg, var(--fcb-secondary) 0%, #2a2a2a 100%);
    border-radius: var(--fcb-radius);
    padding: 40px;
    margin-bottom: 40px;
}

.fcb-player-hero-image {
    position: relative;
}

.fcb-player-hero-image img {
    width: 100%;
    border-radius: var(--fcb-radius-sm);
}

.fcb-player-hero-placeholder {
    aspect-ratio: 3/4;
    background: rgba(255,255,255,0.1);
    border-radius: var(--fcb-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.3);
}

.fcb-player-hero-placeholder svg {
    width: 50%;
    height: 50%;
}

.fcb-player-hero-number {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 80px;
    font-weight: 900;
    color: var(--fcb-primary);
    text-shadow: 0 4px 20px rgba(200,16,46,0.5);
    line-height: 1;
}

.fcb-player-hero-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fcb-player-hero-name {
    font-size: 48px;
    font-weight: 800;
    color: var(--fcb-white);
    margin: 0 0 8px;
    line-height: 1.1;
}

.fcb-player-hero-position {
    font-size: 20px;
    color: var(--fcb-primary);
    font-weight: 600;
    margin-bottom: 32px;
}

.fcb-player-hero-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.fcb-player-detail {
    padding: 16px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--fcb-radius-sm);
}

.fcb-detail-label {
    display: block;
    font-size: 12px;
    color: var(--fcb-gray-300);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.fcb-detail-value {
    display: block;
    font-size: 18px;
    color: var(--fcb-white);
    font-weight: 600;
}

/* Stats Overview */
.fcb-player-stats-overview {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.fcb-stat-card {
    background: var(--fcb-white);
    border-radius: var(--fcb-radius);
    padding: 24px;
    text-align: center;
    box-shadow: var(--fcb-shadow);
}

.fcb-stat-card.fcb-stat-primary {
    background: linear-gradient(135deg, var(--fcb-primary) 0%, #a00d25 100%);
}

.fcb-stat-card.fcb-stat-primary .fcb-stat-value,
.fcb-stat-card.fcb-stat-primary .fcb-stat-label {
    color: var(--fcb-white);
}

.fcb-stat-value {
    font-size: 36px;
    font-weight: 800;
    color: var(--fcb-secondary);
    line-height: 1;
}

.fcb-stat-label {
    font-size: 14px;
    color: var(--fcb-gray-600);
    margin-top: 8px;
}

/* Detailed Stats */
.fcb-player-stats-detailed h3 {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--fcb-secondary);
}

.fcb-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.fcb-stats-group {
    background: var(--fcb-white);
    border-radius: var(--fcb-radius);
    padding: 24px;
    box-shadow: var(--fcb-shadow);
}

.fcb-stats-group h4 {
    font-size: 14px;
    text-transform: uppercase;
    color: var(--fcb-primary);
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--fcb-gray-200);
}

.fcb-stats-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--fcb-gray-100);
}

.fcb-stats-row:last-child {
    border-bottom: none;
}

.fcb-stats-row span {
    color: var(--fcb-gray-600);
}

.fcb-stats-row strong {
    color: var(--fcb-secondary);
    font-weight: 700;
}

.fcb-card-yellow { color: #f1c40f !important; }
.fcb-card-yellowred { color: #e67e22 !important; }
.fcb-card-red { color: var(--fcb-danger) !important; }

.fcb-stats-updated {
    text-align: center;
    color: var(--fcb-gray-600);
    font-size: 12px;
    margin-top: 40px;
}

/* =============================================================================
   NEXT MATCH WIDGET
   ============================================================================= */
.fcb-next-match {
    background: var(--fcb-white);
    border-radius: var(--fcb-radius);
    padding: 32px;
    box-shadow: var(--fcb-shadow);
    text-align: center;
}

.fcb-next-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.fcb-next-label {
    background: var(--fcb-primary);
    color: var(--fcb-white);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
}

.fcb-next-league-logo {
    height: 32px;
    width: auto;
}

.fcb-next-teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
}

.fcb-next-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.fcb-next-team img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.fcb-next-team span {
    font-weight: 600;
    color: var(--fcb-secondary);
}

.fcb-next-vs {
    font-size: 20px;
    font-weight: 700;
    color: var(--fcb-gray-300);
}

.fcb-next-countdown {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.fcb-next-countdown .fcb-countdown-item {
    background: var(--fcb-gray-100);
    padding: 12px 16px;
    border-radius: var(--fcb-radius-sm);
    min-width: 60px;
}

.fcb-next-countdown span {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--fcb-primary);
}

.fcb-next-countdown small {
    display: block;
    font-size: 10px;
    color: var(--fcb-gray-600);
    text-transform: uppercase;
}

.fcb-next-info {
    display: flex;
    justify-content: center;
    gap: 24px;
    color: var(--fcb-gray-600);
    font-size: 14px;
}

/* =============================================================================
   LIVE SCORE WIDGET
   ============================================================================= */
.fcb-live-widget {
    background: var(--fcb-secondary);
    border-radius: var(--fcb-radius);
    padding: 20px;
    color: var(--fcb-white);
}

.fcb-live-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-weight: 600;
}

.fcb-live-dot {
    width: 10px;
    height: 10px;
    background: var(--fcb-danger);
    border-radius: 50%;
    animation: fcb-pulse 1.5s infinite;
}

@keyframes fcb-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.fcb-live-match {
    background: rgba(255,255,255,0.1);
    border-radius: var(--fcb-radius-sm);
    padding: 16px;
    margin-bottom: 12px;
}

.fcb-live-status {
    color: var(--fcb-accent);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 8px;
}

.fcb-live-teams {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fcb-no-live {
    color: var(--fcb-gray-300);
    text-align: center;
    padding: 20px;
}

/* =============================================================================
   TOP SCORERS
   ============================================================================= */
.fcb-scorers-table {
    width: 100%;
    border-collapse: collapse;
}

.fcb-scorers-table th,
.fcb-scorers-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--fcb-gray-200);
}

.fcb-scorers-table th {
    background: var(--fcb-gray-100);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
}

.fcb-scorer-photo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    vertical-align: middle;
    margin-right: 12px;
}

/* =============================================================================
   MATCHES LIST
   ============================================================================= */
.fcb-matches-list h4 {
    font-size: 16px;
    color: var(--fcb-gray-600);
    margin: 24px 0 12px;
    text-transform: uppercase;
}

.fcb-match-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px;
    background: var(--fcb-white);
    border-radius: var(--fcb-radius-sm);
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.fcb-match-date {
    min-width: 80px;
    color: var(--fcb-gray-600);
    font-size: 14px;
}

.fcb-match-teams {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.fcb-match-teams img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.fcb-match-vs {
    color: var(--fcb-gray-300);
    font-size: 12px;
}

.fcb-match-score {
    background: var(--fcb-secondary);
    color: var(--fcb-white);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 16px;
}

.fcb-match-time {
    color: var(--fcb-primary);
    font-weight: 600;
}

/* Academy specific */
.fcb-academy-match {
    background: var(--fcb-white);
    border-radius: var(--fcb-radius-sm);
    padding: 16px;
    margin-bottom: 12px;
    box-shadow: var(--fcb-shadow);
}

.fcb-academy-badge {
    display: inline-block;
    background: var(--fcb-accent);
    color: var(--fcb-secondary);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
}

/* =============================================================================
   RESPONSIVE
   ============================================================================= */
@media (max-width: 1200px) {
    .fcb-carousel-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .fcb-featured-match {
        min-height: 240px;
    }

    .fcb-player-stats-overview {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .fcb-matches-carousel-wrapper {
        padding: 24px;
    }
    
    .fcb-player-hero {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .fcb-player-hero-image {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .fcb-player-hero-number {
        right: 50%;
        transform: translateX(50%);
    }
    
    .fcb-player-hero-name {
        font-size: 36px;
    }
    
    .fcb-cols-4 { grid-template-columns: repeat(3, 1fr); }
    .fcb-cols-5 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .fcb-featured-content {
        max-width: 60%;
    }

    .fcb-featured-teams img {
        width: 48px;
        height: 48px;
    }

    .fcb-score-num {
        font-size: 48px;
    }

    .fcb-score-logos img {
        width: 44px;
        height: 44px;
    }
    
    .fcb-player-stats-overview {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .fcb-cols-3,
    .fcb-cols-4,
    .fcb-cols-5 { 
        grid-template-columns: repeat(2, 1fr); 
    }
    
    .fcb-standings-wrapper {
        padding: 16px 12px;
    }

    .fcb-standings-table .fcb-col-team {
        min-width: 140px;
    }

    .fcb-standings-table th,
    .fcb-standings-table td {
        padding: 10px 6px;
        font-size: 12px;
    }

    .fcb-standings-legend {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .fcb-next-teams {
        flex-direction: column;
        gap: 12px;
    }
    
    .fcb-next-team {
        flex-direction: row;
    }
}

@media (max-width: 480px) {
    .fcb-matches-carousel-wrapper {
        padding: 12px 0;
    }

    .fcb-featured-match {
        min-height: 200px;
    }

    .fcb-featured-content {
        padding: 20px 16px;
        max-width: 65%;
    }

    .fcb-carousel-next {
        width: 40px;
        height: 40px;
    }
    
    .fcb-cols-2,
    .fcb-cols-3,
    .fcb-cols-4,
    .fcb-cols-5 { 
        grid-template-columns: 1fr; 
    }
    
    .fcb-player-stats-overview {
        grid-template-columns: 1fr;
    }
    
    .fcb-stat-value {
        font-size: 28px;
    }
    
    .fcb-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .fcb-player-hero {
        padding: 24px;
    }
    
    .fcb-player-hero-name {
        font-size: 28px;
    }
    
    .fcb-player-hero-number {
        font-size: 60px;
    }
    
    .fcb-match-item {
        flex-direction: column;
        text-align: center;
    }
    
    .fcb-match-teams {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Utility classes */
.fcb-no-data,
.fcb-error {
    padding: 40px;
    text-align: center;
    color: var(--fcb-gray-600);
    background: var(--fcb-gray-100);
    border-radius: var(--fcb-radius);
}

.fcb-loading {
    text-align: center;
    color: var(--fcb-gray-300);
}
