:root {
    /* Dark Theme (Default) */
    --bg-main: #0B0E14;
    --bg-sidebar: #131722;
    --bg-panel: rgba(25, 30, 45, 0.7);
    --text-primary: #FFFFFF;
    --text-secondary: #8B949E;
    --accent-gold: #D4A843;
    --accent-gold-hover: #F2C94C;
    --border-color: rgba(255, 255, 255, 0.1);
    
    /* Medals */
    --gold-bg: rgba(212, 168, 67, 0.15);
    --gold-border: #D4A843;
    --silver-bg: rgba(192, 192, 192, 0.15);
    --silver-border: #C0C0C0;
    --bronze-bg: rgba(205, 127, 50, 0.15);
    --bronze-border: #CD7F32;

    /* Other Gradients */
    --bar-gradient: linear-gradient(90deg, #1A5F7A 0%, #22A699 100%);
    --bg-gradient: radial-gradient(circle at top, #1A1D24 0%, #0B0E14 100%);

    --sidebar-width: 260px;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

.light-theme {
    --bg-main: #F4F6F8;
    --bg-sidebar: #FFFFFF;
    --bg-panel: #FFFFFF;
    --text-primary: #111827;
    --text-secondary: #4B5563;
    --border-color: #E5E7EB;
    --bg-gradient: none;
    --bar-gradient: linear-gradient(90deg, #3B82F6 0%, #10B981 100%);
}

.light-theme .site-footer {
    background: #000 !important;
    color: #fff !important;
}

.light-theme .site-footer h2, 
.light-theme .site-footer h3, 
.light-theme .site-footer .footer-logo span {
    color: #fff !important;
}

.light-theme .site-footer p, 
.light-theme .site-footer a,
.light-theme .site-footer .footer-bottom {
    color: #8B949E !important;
}

.light-theme .site-footer a:hover {
    color: var(--accent-gold) !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background: var(--bg-main);
    background-image: var(--bg-gradient);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    overflow-x: hidden;
    transition: background-color 0.3s, color 0.3s;
}

/* Sidebar */
.sidebar {
    width: var(--sidebar-width);
    background-color: var(--bg-sidebar);
    border-right: 1px solid var(--border-color);
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    z-index: 100;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s ease, background-color 0.3s;
}

.sidebar.collapsed {
    width: 80px;
}

.sidebar.collapsed .logo-text,
.sidebar.collapsed .nav-item span:not(.icon) {
    display: none;
}

.sidebar.collapsed .nav-item {
    justify-content: center;
    padding: 12px;
}

.sidebar.collapsed .nav-item .icon {
    margin-right: 0;
    font-size: 20px;
}

.sidebar.collapsed .theme-toggle span:not(.icon) {
    display: none;
}

.sidebar-toggle-btn {
    position: absolute;
    right: -12px;
    top: 30px;
    width: 24px;
    height: 24px;
    background: var(--accent-gold);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    z-index: 110;
}

.sidebar-header {
    padding: 0 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-primary);
}

.logo-text span {
    color: var(--accent-gold);
}

.close-menu {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 28px;
    cursor: pointer;
}

.nav-links {
    list-style: none;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 16px;
}

.nav-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.nav-item .icon {
    margin-right: 12px;
    font-size: 18px;
}

.nav-item:hover, .nav-item.active {
    background-color: rgba(212, 168, 67, 0.1);
    color: var(--text-primary);
}

.nav-item.active {
    background-color: var(--accent-gold);
    color: #000;
    box-shadow: 0 4px 12px rgba(212, 168, 67, 0.3);
}

.theme-toggle-container {
    padding: 20px 24px;
    border-top: 1px solid var(--border-color);
}

.theme-toggle {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    transition: all 0.2s;
}

.theme-toggle:hover {
    background: var(--border-color);
}

/* Main Content Area */
.main-content {
    flex: 1;
    margin-left: var(--sidebar-width);
    padding: 40px;
    position: relative;
    width: calc(100% - var(--sidebar-width));
    transition: margin-left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar.collapsed ~ .main-content {
    margin-left: 80px;
    width: calc(100% - 80px);
}

.mobile-header {
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: var(--bg-sidebar);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 90;
}

.logo-text-small {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
}

.logo-text-small span {
    color: var(--accent-gold);
}

.hamburger {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
}

/* Page Sections */
.page-section {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.page-section.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero Section */
.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 80px);
    text-align: center;
}

.hero-logo {
    max-width: 180px;
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(212, 168, 67, 0.2);
    margin-bottom: 30px;
    animation: pulse 4s infinite alternate;
}

@keyframes pulse {
    0% { box-shadow: 0 0 30px rgba(212, 168, 67, 0.1); }
    100% { box-shadow: 0 0 60px rgba(212, 168, 67, 0.4); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--accent-gold);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: var(--text-secondary);
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.date-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.badge {
    background: rgba(212, 168, 67, 0.15);
    border: 1px solid var(--accent-gold);
    border-radius: 12px;
    padding: 15px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge .day {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    color: var(--text-primary);
}

.badge .month {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-gold);
    letter-spacing: 1px;
}

.badge-separator {
    color: var(--text-secondary);
    font-size: 24px;
}

.hero-location {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.action-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 14px 28px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--accent-gold);
    color: #000;
    box-shadow: 0 4px 15px rgba(212, 168, 67, 0.4);
}

.btn-primary:hover {
    background: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 168, 67, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--text-primary);
}

/* Leaderboard Section */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 5px;
}

.refresh-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 14px;
    background: rgba(0, 0, 0, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
}

.refresh-spinner {
    width: 12px;
    height: 12px;
    border: 2px solid var(--text-secondary);
    border-top-color: var(--accent-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.glass-panel {
    background: var(--bg-panel);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.table-responsive {
    overflow-x: auto;
}

.leaderboard-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
    text-align: left;
}

.leaderboard-table th {
    padding: 0 20px 10px;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--border-color);
}

.leaderboard-table td {
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.2);
}

.leaderboard-table tr td:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    width: 80px;
}

.leaderboard-table tr td:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    width: 40%;
}

.leaderboard-table tr:hover td {
    background: rgba(255, 255, 255, 0.05);
}

/* Rank styling */
.rank-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    font-weight: 600;
    font-family: var(--font-heading);
}

.team-name {
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.points {
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 18px;
}

/* Medals */
.rank-1 td { background: var(--gold-bg); }
.rank-1 .rank-badge { background: var(--gold-border); color: #000; }
.rank-1 .points { color: var(--gold-border); }

.rank-2 td { background: var(--silver-bg); }
.rank-2 .rank-badge { background: var(--silver-border); color: #000; }
.rank-2 .points { color: var(--silver-border); }

.rank-3 td { background: var(--bronze-bg); }
.rank-3 .rank-badge { background: var(--bronze-border); color: #000; }
.rank-3 .points { color: var(--bronze-border); }

/* Performance Bar */
.perf-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.perf-bar-bg {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.perf-bar-fill {
    height: 100%;
    background: var(--bar-gradient);
    border-radius: 3px;
    transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(34, 166, 153, 0.5);
}

.perf-value {
    font-size: 14px;
    color: var(--text-secondary);
    min-width: 40px;
    text-align: right;
}

.loading-row td {
    text-align: center;
    color: var(--text-secondary);
    padding: 40px !important;
}

/* Placeholders */
.placeholder-panel {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    color: var(--text-secondary);
}

.contact-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title { font-size: 36px; }
    .hero-subtitle { font-size: 16px; }
    .hero-logo { max-width: 250px; }
    .section-header { flex-direction: column; align-items: flex-start; gap: 15px; }
}

@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
        width: 280px;
    }
    
    .sidebar.open {
        transform: translateX(0);
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.5);
    }
    
    .close-menu { display: block; }
    .mobile-header { display: flex; }
    
    .main-content {
        margin-left: 0;
        width: 100%;
        padding: 20px;
    }
    
    .hero-container {
        min-height: calc(100vh - 120px);
    }
    
    .hero-title { font-size: 28px; }
    .date-badges { flex-direction: column; gap: 10px; }
    .badge-separator { display: none; }
    .action-buttons { flex-direction: column; width: 100%; }
    .btn { width: 100%; }
    
    .leaderboard-table th:nth-child(4),
    .leaderboard-table td:nth-child(4) {
        display: none; /* Hide performance bar on mobile for space */
    }
}

/* Results Section */
.results-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
    margin-top: 20px;
}

.event-card {
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-gold);
}

.event-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--accent-gold);
}

.event-results-list {
    display: none;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.event-results-list.show {
    display: block;
    animation: fadeIn 0.3s ease forwards;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 15px;
}

.result-medal {
    font-size: 18px;
}

.result-team {
    font-weight: 600;
}

/* Contacts */
.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.contact-card {
    text-align: center;
    padding: 30px 20px;
}

.contact-card h3 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-size: 22px;
    margin-bottom: 5px;
}

.contact-card .role {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 2px;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    border: none;
}

.btn-whatsapp:hover {
    background: #1EBE5D;
    color: white;
    transform: translateY(-2px);
}

.btn-call {
    background: #3B82F6;
    color: white;
    border: none;
}

.btn-call:hover {
    background: #2563EB;
    color: white;
    transform: translateY(-2px);
}

/* Footer */
.site-footer {
    margin-top: 100px;
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-color);
    background: rgba(0, 0, 0, 0.3);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
}

.footer-logo h2 span {
    color: var(--accent-gold);
}

.footer-logo p {
    color: var(--text-secondary);
    margin-top: 5px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--accent-gold);
    color: #000;
    transform: translateY(-3px);
}

.footer-links h3 {
    font-family: var(--font-heading);
    margin-bottom: 15px;
    color: var(--text-primary);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links ul li a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-credits {
    margin-top: 5px;
    letter-spacing: 1px;
    font-size: 12px;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }
}


/* Sponsor Banner */
.sponsor-banner {
    position: fixed;
    z-index: 95;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    border: 1px solid var(--accent-gold);
    border-radius: 8px;
    padding: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.sponsor-banner.top-right {
    top: 20px;
    right: 20px;
}

.sponsor-banner span {
    font-size: 10px;
    color: var(--text-secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sponsor-placeholder {
    width: 100px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    border-radius: 4px;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    align-items: start;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    position: relative;
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
    z-index: 2;
    border-color: var(--accent-gold);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-family: var(--font-heading);
}

/* Schedule Section */
.schedule-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
}

.schedule-card {
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.schedule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-gold);
}

.schedule-time {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
}

.schedule-title {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 10px;
}

.schedule-venue {
    color: var(--text-secondary);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* New Components & Redesign Styles */

.section-padding {
    padding: 60px 0;
}

/* Individual Date List */
.date-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.date-item {
    background: rgba(212, 168, 67, 0.1);
    border: 1px solid rgba(212, 168, 67, 0.3);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.date-item span {
    color: var(--accent-gold);
    font-size: 18px;
    font-weight: 800;
    margin-right: 4px;
}

.date-item:hover {
    background: rgba(212, 168, 67, 0.2);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

/* Sponsor Carousel */
.sponsor-carousel-container {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 32px;
    margin: 60px 0;
    padding: 60px 40px;
    border: 1px solid var(--accent-gold);
    box-shadow: 0 0 30px rgba(212, 168, 67, 0.1);
}

.carousel-title {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 18px;
    letter-spacing: 6px;
    color: var(--accent-gold);
    margin-bottom: 40px;
    text-transform: uppercase;
    font-weight: 800;
}

.carousel-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    width: 100%;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.carousel-wrapper::-webkit-scrollbar {
    display: none;
}

.carousel-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scroll 30s linear infinite;
    padding: 10px 0;
}

.carousel-wrapper:hover .carousel-track,
.carousel-wrapper:active .carousel-track {
    animation-play-state: paused;
}

.carousel-slide {
    width: 200px;
    height: 120px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: none;
    transition: all 0.4s;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 20px;
    cursor: pointer;
}

.carousel-slide:hover {
    background: rgba(212, 168, 67, 0.05);
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.carousel-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Footer Icons */
.footer-icon-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--accent-gold);
    text-decoration: none;
    transition: all 0.2s;
}

.footer-icon-link:hover {
    color: #fff;
    transform: translateY(-1px);
}

.footer-icon-link svg {
    color: var(--accent-gold);
}

/* Info Grid (Map & Blueprint) */
.home-info-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 60px;
}

.info-card {
    width: 100%;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.blueprint-placeholder {
    height: 500px;
    background: rgba(255, 255, 255, 0.02);
    border: 2px dashed var(--border-color);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.blueprint-placeholder:hover {
    background: rgba(212, 168, 67, 0.02);
    border-color: var(--accent-gold);
}

.btn-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.btn-link:hover {
    text-decoration: underline;
}

/* Result list consolidated below */

.event-card {
    cursor: pointer;
    overflow: hidden;
    padding: 0;
    background: var(--bg-panel);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.event-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 168, 67, 0.1);
}

.event-card-header {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.event-card-header h3 {
    margin-bottom: 0;
    font-size: 18px;
    letter-spacing: 0.5px;
    color: var(--text-primary);
}

.event-card.expanded .event-card-header {
    background: rgba(212, 168, 67, 0.08);
}

.toggle-icon {
    font-size: 12px;
    transition: transform 0.3s;
}

.event-card.expanded .toggle-icon {
    transform: rotate(180deg);
}

.event-card-body {
    padding: 0 25px;
    background: rgba(0, 0, 0, 0.1);
}

/* Footer Contacts */
.footer-contact h3 {
    font-family: var(--font-heading);
    margin-bottom: 20px;
}

.footer-contact-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-contact-item span {
    font-weight: 600;
    font-size: 15px;
}

.mini-links {
    display: flex;
    gap: 15px;
}

.mini-links a {
    font-size: 12px;
    color: var(--accent-gold);
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.mini-links a:hover {
    border-bottom-color: var(--accent-gold);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .home-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .carousel-track {
        gap: 30px;
    }
    .carousel-slide {
        width: 120px;
    }
    .date-list {
        gap: 8px;
    }
    .date-item {
        padding: 6px 12px;
        font-size: 12px;
    }
}

/* Modal Overlay */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--bg-main);
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 16px;
    position: relative;
    padding: 40px 30px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 28px;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--accent-gold);
}

.modal-subpage-title {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--accent-gold);
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

@media (max-width: 768px) {
    .sponsor-banner.top-right {
        display: none; /* Hide on mobile so it doesn't block menu */
    }
}

/* Final Professional Polish & Layout Fixes */

.site-footer {
    margin-top: 100px !important;
    padding: 80px 0 40px !important;
    background: linear-gradient(180deg, rgba(19, 23, 34, 0.8) 0%, rgba(11, 14, 20, 1) 100%) !important;
    position: relative !important;
}

.site-footer::before {
    content: '' !important;
    position: absolute !important;
    top: -1px !important;
    left: 0 !important;
    width: 100% !important;
    height: 1px !important;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent) !important;
}

.carousel-slide {
    border-radius: 24px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid var(--border-color) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2) !important;
    padding: 20px !important;
    height: 150px !important;
    width: 250px !important;
}

.event-card {
    background: var(--bg-panel) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.event-card:hover {
    border-color: var(--accent-gold) !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 50px rgba(212, 168, 67, 0.15) !important;
}

.event-card-header h3 {
    font-size: 20px !important;
    letter-spacing: 1px !important;
    color: var(--text-primary) !important;
}

.home-info-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 50px !important;
}

.map-container {
    border-radius: 24px !important;
    overflow: hidden !important;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5) !important;
}

.blueprint-placeholder {
    height: 600px !important;
    background: rgba(255, 255, 255, 0.02) !important;
    border: 2px dashed var(--border-color) !important;
    border-radius: 24px !important;
}

/* Glassmorphism Polish & Sidebar Fix */

:root {
    --bg-panel: rgba(255, 255, 255, 0.03) !important;
    --border-color: rgba(255, 255, 255, 0.1) !important;
}

.glass-panel, .sidebar, .event-card, .info-card, .blueprint-placeholder, .map-container {
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    background: rgba(25, 30, 45, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37) !important;
}

.sidebar.collapsed {
    width: 60px !important;
}

.sidebar.collapsed .logo-text,
.sidebar.collapsed .nav-item span:not(.icon),
.sidebar.collapsed .theme-toggle span:not(.icon) {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

.sidebar.collapsed .nav-item {
    padding: 15px 0 !important;
    justify-content: center !important;
    width: 100% !important;
}

.sidebar.collapsed .nav-item .icon {
    margin: 0 !important;
    font-size: 22px !important;
}

.sidebar.collapsed .sidebar-header {
    padding: 0 !important;
    justify-content: center !important;
    margin-bottom: 20px !important;
}

.sidebar.collapsed ~ .main-content {
    margin-left: 60px !important;
    width: calc(100% - 60px) !important;
}

.sidebar-toggle-btn {
    right: -10px !important;
    width: 20px !important;
    height: 20px !important;
    font-size: 10px !important;
}

.nav-item {
    position: relative !important;
    overflow: hidden !important;
}

.nav-item.active::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-gold);
    box-shadow: 0 0 15px var(--accent-gold);
}

/* event-card-body styling handled above */

/* Event Results Cards */
.results-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
    margin-top: 30px;
}

.event-card {
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.event-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.event-card-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.event-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin: 0;
}

/* event-results-list show/hide handled by display:none/block at line 679-689 */

.result-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.result-item:last-child {
    border-bottom: none;
}

.result-medal {
    font-size: 1.2rem;
}

.result-team {
    font-size: 0.95rem;
    color: var(--text-primary);
}

/* Logo Styling */
.sidebar-header .logo-text {
    display: flex;
    align-items: center;
    gap: 12px;
}

.main-logo {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-gold);
    box-shadow: 0 0 15px rgba(212, 168, 67, 0.3);
}

/* Carousel */
.logo-carousel-container {
    padding: 40px 0;
    overflow: hidden;
    position: relative;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    margin: 40px 0;
}

.logo-carousel-track {
    display: flex;
    gap: 50px;
    padding: 0 50px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.logo-carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-logo {
    flex: 0 0 80px;
    height: 80px;
    object-fit: contain;
    filter: none !important;
    transition: all 0.3s;
    cursor: pointer;
}

.carousel-logo:hover {
    filter: grayscale(0) brightness(1);
    transform: scale(1.1);
}

/* Torque 2.0 2026 content upgrade */

.results-hint {
    color: var(--text-secondary);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.result-status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.result-status-finished {
    background: rgba(36, 197, 94, 0.14);
    color: #7ee2a8;
    border: 1px solid rgba(36, 197, 94, 0.24);
}

.result-status-upcoming {
    background: rgba(212, 168, 67, 0.14);
    color: var(--accent-gold);
    border: 1px solid rgba(212, 168, 67, 0.24);
}

.expand-icon {
    color: var(--accent-gold);
    font-size: 18px;
    transition: transform 0.3s ease;
}

.result-medal {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-family: var(--font-heading);
    color: #0b0e14;
    background: linear-gradient(135deg, #f2c94c 0%, #d4a843 100%);
    box-shadow: 0 10px 25px rgba(212, 168, 67, 0.25);
}

.result-medal-secondary {
    background: linear-gradient(135deg, #dce1e8 0%, #aeb7c3 100%);
}

.result-item-winner {
    border-bottom: none;
}

.schedule-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 40px;
}

.schedule-day-card {
    padding: 0;
    overflow: hidden;
    width: 100%;
}

.schedule-day-header {
    width: 100%;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(135deg, rgba(212, 168, 67, 0.14) 0%, rgba(212, 168, 67, 0.04) 100%);
    color: var(--text-primary);
}

.schedule-day-header p {
    margin-top: 8px;
    color: var(--text-secondary);
    font-size: 13px;
    letter-spacing: 0.5px;
}

.schedule-day-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(212, 168, 67, 0.16);
    color: var(--accent-gold);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.schedule-day-body {
    display: none;
    padding: 18px;
}

.schedule-day-body.open {
    display: block;
}

.schedule-events-list {
    display: grid;
    gap: 12px;
}

.schedule-sport-group {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
    transition: all 0.3s ease;
}

.schedule-sport-header {
    width: 100%;
    border: none;
    background: transparent;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s ease;
}

.schedule-sport-header:hover {
    background: rgba(255, 255, 255, 0.03);
}

.schedule-sport-header span:first-child {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 700;
    color: var(--text-primary);
}

.schedule-sport-body {
    display: none;
    padding: 0 16px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.schedule-sport-body.open {
    display: grid;
    gap: 10px;
    padding-top: 16px;
}

.schedule-fixture-card {
    padding: 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.schedule-fixture-main {
    flex: 1;
}

.schedule-fixture-teams {
    font-weight: 700;
    font-size: 15px;
    color: var(--text-primary);
    margin-bottom: 6px;
    line-height: 1.3;
    display: block;
}

@media (max-width: 768px) {
    .schedule-fixture-teams {
        font-size: 14px;
        line-height: 1.4;
    }
}

.schedule-fixture-time {
    color: var(--accent-gold);
    font-size: 13px;
    font-weight: 500;
    opacity: 0.9;
}

.schedule-fixture-status {
    flex-shrink: 0;
}

.schedule-empty-state {
    padding: 24px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    text-align: center;
    color: var(--text-secondary);
}

.schedule-empty-row {
    text-align: center;
    color: var(--text-secondary) !important;
}

.result-status-badge.result-status-live {
    background: rgba(255, 68, 68, 0.15) !important;
    color: #ff4444 !important;
    border: 1px solid rgba(255, 68, 68, 0.3) !important;
}

.schedule-winner-note {
    margin-top: 12px;
    padding: 8px 12px;
    background: rgba(212, 168, 67, 0.05);
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.4;
    border-left: 2px solid var(--accent-gold);
}

.events-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.event-showcase-card {
    padding: 0;
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.event-showcase-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 168, 67, 0.35) !important;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28) !important;
}

.event-showcase-media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
}

.event-showcase-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.event-showcase-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-family: var(--font-heading);
}

.event-showcase-copy {
    padding: 20px;
}

.event-showcase-copy h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    line-height: 1.15;
}

.event-chip {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(212, 168, 67, 0.14);
    color: var(--accent-gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-content {
    padding: 34px;
}

.about-shell {
    display: grid;
    gap: 28px;
}

.about-hero-card,
.about-copy-card,
.about-list-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.045) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 28px;
}

.about-kicker {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--accent-gold);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-hero-card h3,
.about-copy-card h3 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.08;
    margin-bottom: 16px;
}

.about-hero-card p,
.about-copy-card p {
    color: #d7dce5;
    line-height: 1.8;
    font-size: 16px;
}

.light-theme .about-hero-card p,
.light-theme .about-copy-card p {
    color: #374151;
}

.about-stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.about-stat {
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(212, 168, 67, 0.08);
    border: 1px solid rgba(212, 168, 67, 0.18);
}

.about-stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--accent-gold);
}

.about-stat span {
    color: var(--text-secondary);
    font-size: 14px;
}

.about-feature-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
}

.about-list-card {
    position: relative;
    overflow: hidden;
}

.about-list-card::after {
    content: "";
    position: absolute;
    inset: auto -60px -60px auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(112, 202, 240, 0.18) 0%, rgba(112, 202, 240, 0) 70%);
    pointer-events: none;
}

.about-feature-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 20px;
}

.about-feature-list li {
    position: relative;
    padding-left: 28px;
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.5;
}

.about-feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #58d7ff;
    font-size: 18px;
    font-weight: 800;
}

@media (max-width: 900px) {
    .about-feature-grid {
        grid-template-columns: 1fr;
    }

    .about-feature-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-content {
        padding: 20px;
    }

    .about-hero-card,
    .about-copy-card,
    .about-list-card {
        padding: 22px;
    }

    .schedule-grid {
        gap: 16px;
    }
}

/* Live Banner Styles */
.live-banner {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    border: 1px solid rgba(212, 168, 67, 0.3);
    border-radius: 20px;
    background: linear-gradient(90deg, rgba(212, 168, 67, 0.1) 0%, rgba(0, 0, 0, 0.2) 100%);
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    color: var(--accent-gold);
    font-size: 11px;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    background: rgba(212, 168, 67, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(212, 168, 67, 0.2);
    white-space: nowrap;
    margin-right: 15px;
}

.banner-track-container {
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-left: 5px;
}

.banner-track-container::-webkit-scrollbar {
    display: none;
}

.banner-track {
    display: flex;
    gap: 40px;
    width: max-content;
    padding: 5px 0;
    animation: scrollBanner 60s linear infinite;
}

.banner-track:hover {
    animation-play-state: paused;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: #ff4444;
    border-radius: 50%;
    box-shadow: 0 0 10px #ff4444;
    animation: pulse 1.5s infinite;
}

.banner-item {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.banner-item:hover {
    transform: translateX(10px);
}

.banner-event-info {
    display: flex;
    flex-direction: column;
}

.banner-day {
    font-size: 10px;
    color: var(--accent-gold);
    font-weight: 800;
}

.banner-time {
    font-size: 12px;
    color: var(--text-secondary);
}

.banner-title {
    font-weight: 700;
    font-size: 16px;
    color: var(--text-primary);
}

.banner-teams {
    font-size: 13px;
    color: var(--text-secondary);
}

.banner-live-tag {
    background: #ff4444;
    color: white;
    font-size: 10px;
    font-weight: 900;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 5px;
}

/* Live Score Display Styles */
.live-score-display {
    margin-top: 15px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 168, 67, 0.2);
    border-radius: 12px;
    box-shadow: inset 0 0 15px rgba(212, 168, 67, 0.05);
}

.live-score-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 800;
    color: var(--accent-gold);
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.live-pulse {
    width: 6px;
    height: 6px;
    background: var(--accent-gold);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-gold);
    animation: pulse 1.5s infinite;
}

.score-simple-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.score-value {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    text-shadow: 0 0 15px rgba(255,255,255,0.1);
    white-space: nowrap;
}

.score-round-tag {
    background: rgba(212, 168, 67, 0.15);
    color: var(--accent-gold);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    border: 1px solid rgba(212, 168, 67, 0.3);
}

@keyframes pulse {
    0% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.1); }
    100% { opacity: 1; transform: scale(1); }
}

@media (max-width: 768px) {
    .live-banner {
        padding: 8px 12px;
        gap: 0;
    }
    .live-indicator {
        font-size: 9px;
        padding: 4px 10px;
        margin-right: 12px;
    }
    .banner-track {
        gap: 25px;
        animation: scrollBanner 40s linear infinite;
    }
    .banner-title {
        font-size: 13px;
    }
    .banner-teams {
        font-size: 10px;
    }

    .score-value {
        font-size: 20px;
        letter-spacing: -0.5px;
    }
    
    .live-score-display {
        padding: 12px;
    }
    
    .score-round-tag {
        padding: 4px 8px;
        font-size: 11px;
    }
    
    .live-score-header {
        font-size: 10px;
        margin-bottom: 8px;
    }
}

@keyframes scrollBanner {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.score-rounds-breakdown {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.round-pill {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(212, 168, 67, 0.2);
    border-radius: 6px;
    overflow: hidden;
    font-size: 11px;
}

.round-label {
    background: rgba(212, 168, 67, 0.1);
    color: var(--accent-gold);
    padding: 3px 6px;
    font-weight: 800;
    border-right: 1px solid rgba(212, 168, 67, 0.2);
}

.round-scores {
    padding: 3px 8px;
    color: var(--text-primary);
    font-weight: 600;
    font-family: var(--font-heading);
}

@media (max-width: 768px) {
    .score-rounds-breakdown {
        gap: 6px;
    }
    .round-pill {
        font-size: 10px;
    }
}

.live-scorecard-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding: 10px 18px;
    background: rgba(212, 168, 67, 0.1);
    border: 1px solid var(--accent-gold);
    border-radius: 10px;
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    width: fit-content;
}

.live-scorecard-btn:hover {
    background: var(--accent-gold);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 168, 67, 0.3);
}

.live-icon {
    font-size: 16px;
}
