﻿/* ============================================
   KORALIVE ESPAÑA - PLATAFORMA DEPORTIVA
   Diseño Premium para Streaming de Partidos
   ============================================ */

:root {
    /* Colores Deportivos */
    --field-green: #1B5E20;
    --field-green-light: #2E7D32;
    --field-green-dark: #0D3D10;
    --gold: #FFD700;
    --gold-dark: #FFC700;
    --black: #0D0D0D;
    --dark: #1A1A1A;
    --white: #FFFFFF;
    --gray-900: #111827;
    --gray-800: #1F2937;
    --gray-700: #374151;
    --gray-600: #4B5563;
    --gray-500: #6B7280;
    --gray-400: #9CA3AF;
    --gray-300: #D1D5DB;
    --gray-200: #E5E7EB;
    --gray-100: #F3F4F6;
    
    /* Badges de Estado */
    --live-red: #FF0000;
    --live-red-glow: rgba(255, 0, 0, 0.5);
    --finished-blue: #3B82F6;
    --upcoming-orange: #F59E0B;
    
    /* Gradientes Deportivos */
    --gradient-field: linear-gradient(135deg, #1B5E20 0%, #2E7D32 100%);
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FFC700 100%);
    --gradient-hero: linear-gradient(180deg, rgba(13, 13, 13, 0.95) 0%, rgba(27, 94, 32, 0.2) 100%);
    --gradient-overlay: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    
    /* Sombras */
    --shadow-sm: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px -2px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 20px -5px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 20px 40px -10px rgba(0, 0, 0, 0.4);
    --glow-green: 0 0 30px rgba(46, 125, 50, 0.6);
    --glow-gold: 0 0 30px rgba(255, 215, 0, 0.5);
    --glow-live: 0 0 20px var(--live-red-glow), 0 0 40px var(--live-red-glow);
    
    /* Tipografía */
    --font-display: 'Bebas Neue', 'Impact', 'Arial Black', sans-serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Espaciado */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    
    /* Bordes */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Layout */
    --container-width: 1280px;
    --header-height: 80px;
    
    /* Transiciones */
    --transition-base: 0.2s ease;
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET Y BASE
   ============================================ */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    color: var(--gray-100);
    background: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Fondo animado con textura de campo */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;;
    background:
        radial-gradient(circle at 20% 30%, rgba(27, 94, 32, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(27, 94, 32, 0.03) 2px, rgba(27, 94, 32, 0.03) 4px);
    z-index: -1;
    animation: fieldGlow 15s ease-in-out infinite;
}

@keyframes fieldGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: var(--space-4);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

h1 { font-size: clamp(3rem, 7vw, 5rem); }
h2 { font-size: clamp(2.5rem, 5vw, 4rem); }
h3 { font-size: clamp(2rem, 4vw, 3rem); }
h4 { font-size: clamp(1.5rem, 3vw, 2rem); }

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--space-6);
}

/* ============================================
   HEADER - NAVEGACIÓN
   ============================================ */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: var(--transition-smooth);
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 13, 13, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 2px solid var(--field-green);
    transition: var(--transition-smooth);
}

header.header-scrolled::before {
    background: rgba(13, 13, 13, 0.98);
    box-shadow: var(--shadow-lg);
}

.container-header {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--space-6);
    height: 100%;
}

.header-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    z-index: 1;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--white);
    transition: var(--transition-smooth);
}

.logo-container:hover {
    transform: translateY(-2px);
}

.logo-container img {
    height: 50px;
    width: auto;
}

.logo-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header-nav-desktop {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.nav-link-clean {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);
    color: var(--gray-300);
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-link-clean::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-field);
    border-radius: var(--radius-lg);
    opacity: 0;
    transition: var(--transition-smooth);
}

.nav-link-clean:hover {
    color: var(--white);
}

.nav-link-clean:hover::before {
    opacity: 1;
}

.nav-link-clean i {
    font-size: 1.2rem;
    color: var(--gold);
    position: relative;
    z-index: 1;
}

.nav-link-clean span {
    position: relative;
    z-index: 1;
}

/* ============================================
   HERO SECTION - PARTIDO DESTACADO
   ============================================ */

.hero-stadium {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--header-height) + var(--space-12)) var(--space-6) var(--space-12);
    overflow: hidden;
}

.hero-stadium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-stadium.png');
    background-size: cover;
    background-position: center;
    filter: brightness(0.4);
    z-index: -1;
}

.hero-stadium::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--gradient-overlay);
    z-index: 0;
}

.hero-featured-match {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: var(--live-red);
    color: var(--white);
    padding: var(--space-2) var(--space-5);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-6);
    box-shadow: var(--glow-live);
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { box-shadow: var(--glow-live); transform: scale(1); }
    50% { box-shadow: 0 0 40px var(--live-red-glow), 0 0 80px var(--live-red-glow); transform: scale(1.05); }
}

.live-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.league-name {
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-4);
}

.match-teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-8);
    margin: var(--space-8) 0;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
}

.team-logo {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid var(--gold);
    border-radius: 50%;
    padding: var(--space-4);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--glow-gold);
}

.team-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.team-name {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--white);
    text-transform: uppercase;
}

.vs-divider {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--gold);
    font-weight: 700;
}

.match-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-8);
    margin-top: var(--space-8);
    padding: var(--space-6);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.match-time, .match-date {
    font-size: 1.25rem;
    color: var(--gray-300);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.match-time i, .match-date i {
    color: var(--gold);
}

.cta-watch {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    background: var(--gradient-field);
    color: var(--white);
    padding: var(--space-5) var(--space-10);
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: var(--space-8);
    box-shadow: var(--shadow-xl), var(--glow-green);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.cta-watch:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-xl), 0 0 50px rgba(46, 125, 50, 0.8);
}

/* ============================================
   TARJETAS DE PARTIDOS
   ============================================ */

.matches-section {
    padding: var(--space-20) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: var(--space-4);
}

.section-title span {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-400);
}

.matches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-6);
    margin-bottom: var(--space-16);
}

.match-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-2xl);
    padding: var(--space-6);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.match-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-glass);
    opacity: 0;
    transition: var(--transition-smooth);
}

.match-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl), var(--glow-green);
    border-color: var(--field-green);
}

.match-card:hover::before {
    opacity: 1;
}

.match-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-5);
    position: relative;
    z-index: 1;
}

.league-badge {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.match-status {
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.match-status.live {
    background: var(--live-red);
    color: var(--white);
    box-shadow: 0 0 15px var(--live-red-glow);
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.match-status.finished {
    background: var(--finished-blue);
    color: var(--white);
}

.match-status.upcoming {
    background: var(--upcoming-orange);
    color: var(--white);
}

.match-card-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: var(--space-5) 0;
    position: relative;
    z-index: 1;
}

.match-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    flex: 1;
}

.match-team-logo {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    padding: var(--space-2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.match-card:hover .match-team-logo {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.match-team-name {
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    text-align: center;
}

.match-score {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: 700;
}

.match-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: var(--space-5);
    padding-top: var(--space-5);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.match-time-info {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--gray-400);
    font-size: 0.875rem;
}

.match-time-info i {
    color: var(--gold);
}

.match-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    background: var(--gradient-field);
    color: var(--white);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.match-cta:hover {
    transform: translateX(5px);
    box-shadow: var(--glow-green);
}

/* ============================================
   BADGES DE LIGAS
   ============================================ */

.leagues-section {
    padding: var(--space-16) 0;
    background: rgba(27, 94, 32, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.leagues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-6);
}

.league-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    text-align: center;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.league-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: var(--shadow-lg), var(--glow-gold);
}

.league-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--space-4);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    padding: var(--space-3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.league-name-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--white);
    text-transform: uppercase;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background: var(--dark);
    border-top: 2px solid var(--field-green);
    padding: var(--space-16) 0 var(--space-8);
    margin-top: var(--space-24);
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-12);
    margin-bottom: var(--space-12);
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-4);
}

.footer-brand p {
    color: var(--gray-400);
    margin-bottom: var(--space-6);
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: var(--space-3);
}

.footer-social a {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
    font-size: 1.5rem;
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    background: var(--field-green);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-4px);
    box-shadow: var(--glow-green);
}

.footer-section h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: var(--space-5);
    color: var(--white);
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-3);
}

.footer-links a {
    color: var(--gray-400);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(5px);
    display: inline-block;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-6) 0 0;
    text-align: center;
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* ============================================
   BOTONES
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary {
    background: var(--gradient-field);
    color: var(--white);
    box-shadow: var(--shadow-md), var(--glow-green);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(46, 125, 50, 0.7);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
    transform: translateY(-3px);
}

/* ============================================
   MOBILE MENU
   ============================================ */

.hamburger-container {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 2000;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: var(--gold);
    transition: var(--transition-smooth);
    border-radius: 3px;
}

.hamburger-open .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger-open .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-open .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

#mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 1500;
}

#mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

#mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100%;
    background: var(--dark);
    border-left: 2px solid var(--field-green);
    padding: var(--space-8);
    transition: var(--transition-smooth);
    z-index: 2000;
    overflow-y: auto;
}

#mobile-menu.active {
    right: 0;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4);
    color: var(--gray-300);
    font-weight: 600;
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-2);
    transition: var(--transition-smooth);
    text-transform: uppercase;
}

.mobile-nav-item:hover {
    background: var(--gradient-field);
    color: var(--white);
}

.mobile-nav-item i {
    color: var(--gold);
    font-size: 1.5rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .header-nav-desktop {
        display: none;
    }
    
    .hamburger-container {
        display: flex;
    }
    
    .btn-primary {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .match-teams {
        flex-direction: column;
        gap: var(--space-4);
    }
    
    .vs-divider {
        font-size: 2rem;
    }
    
    .team-logo {
        width: 80px;
        height: 80px;
    }
    
    .team-name {
        font-size: 1.75rem;
    }
    
    .matches-grid {
        grid-template-columns: 1fr;
    }
    
    .leagues-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-4);
    }
    
    .logo-container {
        font-size: 1.25rem;
    }
    
    .logo-container img {
        height: 40px;
    }
    
    .match-info {
        flex-direction: column;
        gap: var(--space-4);
    }
    
    .cta-watch {
        font-size: 1.25rem;
        padding: var(--space-4) var(--space-6);
    }
}