/* AuraStream Secure CSS - Rich Dark, Glassmorphism & High-Fidelity Streaming Dashboard */

:root {
    --bg-dark: #070913;
    --bg-card: rgba(18, 22, 45, 0.65);
    --bg-card-hover: rgba(26, 32, 64, 0.85);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-color-focus: rgba(99, 102, 241, 0.5);

    --color-primary: #6366f1;
    /* Indigo */
    --color-primary-hover: #4f46e5;
    --color-success: #10b981;
    /* Emerald */
    --color-danger: #ef4444;
    /* Rose Red */
    --color-warning: #f59e0b;
    /* Amber */
    --color-text: #f3f4f6;
    --color-text-muted: #9ca3af;
    --color-accent: #00f2fe;
    /* Cyber Teal */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--color-text);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Background Glow Blobs */
.bg-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
    transition: all 1s ease;
}

.bg-glow-1 {
    top: -150px;
    right: -100px;
    background: radial-gradient(circle, var(--color-primary) 0%, rgba(0, 0, 0, 0) 70%);
}

.bg-glow-2 {
    bottom: -150px;
    left: -100px;
    background: radial-gradient(circle, var(--color-accent) 0%, rgba(0, 0, 0, 0) 70%);
}

/* App Layout Container */
.app-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 24px;
    background: rgba(13, 17, 39, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.live-badge-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: var(--color-danger);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.time-schedule {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

/* Jika ingin efek hover saat disentuh */
.match-card:hover .time-schedule {
    color: var(--wc-neon-green);
}

.upcoming-date {
    font-size: 0.75rem !important;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: 0.5px;
}

.logo-icon {
    color: var(--color-accent);
    filter: drop-shadow(0 0 8px rgba(0, 242, 254, 0.4));
}

.accent-text {
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Kelas khusus untuk ukuran font tanggal upcoming */
.upcoming-date {
    font-size: 0.75rem !important;
    /* Ubah ke 0.7rem jika ingin lebih kecil, atau 0.9rem jika ingin lebih besar */
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Container server */
#simple-servers {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* Tombol Server Premium */
.btn-server {
    background: #1a1a2e;
    color: #fff;
    border: 1px solid #333;
    padding: 6px 14px;
    border-radius: 6px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-server:hover {
    border-color: var(--wc-neon-green);
    background: #252545;
}

/* Tombol Aktif (Warna Hijau Neon) */
.btn-server.active {
    background: var(--wc-neon-green);
    color: #000;
    border-color: var(--wc-neon-green);
    box-shadow: 0 0 12px rgba(0, 255, 135, 0.3);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), #4f46e5);
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.55);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
}

.btn-icon {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text);
}

.btn-icon:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--color-accent);
}

.btn-danger-outline {
    background: transparent;
    border: 1px solid var(--color-danger);
    color: var(--color-danger);
}

.btn-danger-outline:hover {
    background: rgba(239, 68, 68, 0.1);
}

/* Desain Timer Hitung Mundur World Cup */
.countdown-timer {
    background: rgba(10, 10, 42, 0.8);
    border: 1px solid var(--wc-neon-green);
    color: var(--wc-neon-green);
    padding: 6px 12px;
    border-radius: 6px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-block;
    margin-top: 10px;
    letter-spacing: 1px;
    box-shadow: 0 0 10px rgba(0, 255, 135, 0.2);
}

.countdown-timer i {
    margin-right: 5px;
}

/* Spotlight Hero */
.hero-spotlight {
    position: relative;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(0, 242, 254, 0.05) 100%), var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.hero-spotlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-danger), var(--color-primary), var(--color-accent));
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: var(--color-danger);
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-danger);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
        box-shadow: 0 0 10px var(--color-danger);
    }

    100% {
        transform: scale(0.9);
        opacity: 0.6;
    }
}

.hero-match-detail {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.hero-teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    width: 100%;
    flex-wrap: wrap;
}

.hero-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    min-width: 150px;
}

.hero-team img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.hero-team span {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
}

.vs-badge {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--color-text-muted);
    background: rgba(255, 255, 255, 0.05);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
}

/* Mengecilkan Logo Tim */
.hero-team img {
    width: 65px;
    /* Dikecilkan dari 100px */
    height: 65px;
    /* Dikecilkan dari 100px */
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.1);
    /* Border lebih tipis agar proporsional */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    /* Shadow dikurangi */
    background: rgba(255, 255, 255, 0.05);
}

/* Mengecilkan Nama Tim */
.hero-team span {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    /* Dikecilkan dari 1.5rem */
}

/* Mengecilkan Badge VS */
.vs-badge {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    /* Dikecilkan dari 1.8rem */
    color: var(--color-text-muted);
    background: rgba(255, 255, 255, 0.05);
    width: 45px;
    /* Dikecilkan dari 60px */
    height: 45px;
    /* Dikecilkan dari 60px */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border-color);
}

/* Menyesuaikan jarak agar tidak renggang */
.hero-teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    /* Dikecilkan dari 50px */
    width: 100%;
    flex-wrap: wrap;
}

/* Media Query untuk layar HP (di bawah 480px) */
@media screen and (max-width: 480px) {
    .hero-spotlight {
        padding: 20px;
        /* Kurangi padding agar tidak sempit */
        border-radius: 16px;
    }

    .hero-teams {
        gap: 15px;
        /* Perkecil jarak */
        flex-direction: column;
        /* Ubah menjadi vertikal */
    }

    .hero-team {
        min-width: unset;
        /* Hapus batasan lebar */
        gap: 5px;
    }

    .hero-team img {
        width: 15px;
        /* Lebih kecil agar pas di layar HP */
        height: 15px;
    }

    .hero-team span {
        font-size: 0.9rem;
        /* Nama tim lebih kecil */
    }

    .vs-badge {
        width: 15px;
        /* Badge VS lebih kecil */
        height: 15px;
        font-size: 0.8rem;
        margin: 5px 0;
    }
}

/* Event Sections & Grid */
.events-section {
    margin-bottom: 45px;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.section-header h2 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.badge {
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
}

.badge-danger {
    background-color: rgba(239, 68, 68, 0.15);
    color: var(--color-danger);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.badge-primary {
    background-color: rgba(99, 102, 241, 0.15);
    color: var(--color-primary);
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.badge-muted {
    background-color: rgba(156, 163, 175, 0.15);
    color: var(--color-text-muted);
    border: 1px solid rgba(156, 163, 175, 0.3);
}

.grid {
    display: grid;
    gap: 20px;
}

.grid-cards {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.empty-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed var(--border-color);
    border-radius: 16px;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* Match Card */
.match-card {
    background: var(--bg-card);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.match-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-live {
    color: var(--color-danger);
}

.status-upcoming {
    color: var(--color-primary);
}

.status-ended {
    color: var(--color-text-muted);
}

.card-drm-badge {
    display: none !important;
}

.card-tournament {
    font-size: 0.72rem;
    color: var(--color-accent);
    font-weight: 700;
    max-width: 65%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.team-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 42%;
}

.team-info img {
    width: 55px;
    height: 55px;
    object-fit: cover;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.08);
}

.team-name {
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.vs-divider {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

.card-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
}

.time-schedule {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.card-footer .btn {
    width: 100%;
}

/* Player overlay */
.player-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 6, 15, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.player-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

@keyframes scaleUp {
    from {
        transform: scale(0.92);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.player-modal-container {
    width: 92%;
    max-width: 1050px;
    background: #0b0e1c;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
    animation: scaleUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.player-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 24px;
    background: #0f132a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.player-match-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: 'Outfit', sans-serif;
}

.vs-separator {
    color: var(--color-accent);
    font-weight: 800;
    font-size: 0.9rem;
}

.stream-type-badge {
    font-size: 0.72rem;
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid rgba(99, 102, 241, 0.4);
    color: #a5b4fc;
    padding: 3px 8px;
    border-radius: 6px;
    margin-left: 10px;
}

.btn-close-player {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: var(--color-danger);
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-close-player:hover {
    background: var(--color-danger);
    color: white;
}

.player-body {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: black;
}

/* Custom Video Container and Anti-Piracy Watermark */
.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#video-player {
    transition: object-fit 0.3s ease;
}

/* Custom Player HUD Overlay inside #video-container */
.custom-player-hud {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    /* Below Shaka control buttons, above video */
    pointer-events: none;
    /* Allow clicking through container */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    box-sizing: border-box;
    background: linear-gradient(to bottom, rgba(7, 9, 19, 0.8) 0%, rgba(7, 9, 19, 0) 20%, rgba(7, 9, 19, 0) 80%, rgba(7, 9, 19, 0.85) 100%);
    opacity: 0;
    transform: translateY(5px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Show HUD on hover or active class */
.custom-player-hud.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Top bar style */
.hud-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 8px;
}

.hud-match-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    gap: 8px;
    pointer-events: auto;
}

.hud-vs-separator {
    color: var(--color-accent);
    font-weight: 800;
}

.hud-close-btn {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: var(--color-danger);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s;
    pointer-events: auto;
}

.hud-close-btn:hover {
    background: var(--color-danger);
    color: white;
    transform: scale(1.05);
}

/* Custom player controls - Floating glass navbar at top */
.custom-player-controls {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-top: 10px;
    /* Space below match title */
    flex-wrap: wrap;
    gap: 24px;
    padding: 8px 16px;
    background: rgba(10, 14, 30, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    pointer-events: auto;
    /* Clickable! */
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.hud-left,
.hud-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.hud-label {
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hud-pills {
    display: flex;
    gap: 6px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3px;
    border-radius: 20px;
}

.hud-pill {
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    padding: 5px 12px;
    border-radius: 16px;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.hud-pill:hover {
    color: white;
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.hud-pill.active {
    background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
    color: #070913;
    font-weight: 700;
    box-shadow: 0 0 10px rgba(0, 242, 254, 0.4);
}

.player-footer {
    padding: 16px 24px;
    background: #0f132a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.security-info {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.82rem;
}

.secure-badge {
    color: var(--color-success);
    font-weight: 600;
}

#ip-watermark-label {
    color: var(--color-text-muted);
}

.disclaimer {
    color: var(--color-text-muted);
    font-size: 0.76rem;
    line-height: 1.4;
    max-width: 600px;
}

/* Security Blocker Screen */
.security-blocker {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #050711;
    z-index: 200;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.security-blocker.hidden {
    display: none;
}

.blocker-content {
    background: rgba(18, 22, 45, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    max-width: 550px;
    box-shadow: 0 15px 40px rgba(239, 68, 68, 0.08);
}

.blocker-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--color-danger);
    filter: drop-shadow(0 0 15px rgba(239, 68, 68, 0.4));
}

.animate-bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.blocker-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.blocker-content p {
    color: var(--color-text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.blocker-content .instruction {
    color: var(--color-accent);
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 25px;
}

/* Footer Section */
.footer {
    text-align: center;
    padding: 30px 20px;
    color: var(--color-text-muted);
    font-size: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: auto;
}

/* Helper Utilities */
.hidden {
    display: none !important;
}

.text-danger {
    color: var(--color-danger);
}

.text-primary {
    color: var(--color-primary);
}

.text-muted {
    color: var(--color-text-muted);
}

/* Customizing Shaka Controls to match dark design */
.shaka-video-container {
    font-family: 'Inter', sans-serif;
}

.shaka-play-button-container {
    background-color: rgba(99, 102, 241, 0.3) !important;
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-spotlight {
        padding: 24px;
    }

    .hero-teams {
        gap: 20px;
    }

    .hero-team img {
        width: 70px;
        height: 70px;
    }

    .hero-team span {
        font-size: 1.2rem;
    }

    .vs-badge {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .player-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .btn-close-player {
        align-self: stretch;
    }

    .player-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}