/* ========================================
   AHUDIYANNEM FC - STYLESHEET
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Playwrite+IE:wght@400..700&display=swap');

/* ---- RESET & BASE ---- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
}

img, video {
    max-width: 100%;
    height: auto;
}

/* Global Responsive Rules - Same Look Across All Sizes */
.container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 5%;
}

@media (max-width: 768px) {
    .container {
        padding: 0 4%;
    }
}

:root {
    --green-50: #f0fdf4;
    --green-100: #dcfce7;
    --green-200: #bbf7d0;
    --green-300: #86efac;
    --green-400: #4ade80;
    --green-500: #22c55e;
    --green-600: #16a34a;
    --green-700: #15803d;
    --green-800: #166534;
    --green-900: #14532d;
    --green-950: #052e16;
    --white: #ffffff;
    --red: #dc2626;
    --red-dark: #b91c1c;
    --pink-light: #fbcfe8;
    --pink: #f472b6;
    --pink-dark: #9d174d;
    --primary-glow: #22c55e;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(34, 197, 94, 0.2);
    --accent-gradient: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

/* Toggle Button Styles */
.toggle-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.toggle-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.toggle-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--green-900);
    transition: color 0.3s ease;
}

.toggle-label.active {
    color: var(--green-900);
}

.toggle-label.inactive {
    color: #9ca3af;
}

.toggle-switch {
    width: 96px;
    height: 36px;
    background: #355872;
    border-radius: 20px;
    cursor: pointer;
    position: relative;
    transition: background 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.toggle-switch.female {
    background: var(--pink-dark);
    box-shadow: 0 4px 15px rgba(157, 23, 77, 0.4);
}

.toggle-slider {
    width: 28px;
    height: 28px;
    background: white;
    border-radius: 50%;
    position: absolute;
    top: 4px;
    left: 4px;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.toggle-switch.female .toggle-slider {
    transform: translateX(60px);
}

@keyframes bounce {
    0%, 100% { transform: translateX(0); }
    30% { transform: translateX(3px); }
    60% { transform: translateX(-3px); }
}

.toggle-switch:active,
.toggle-switch.bounce {
    animation: bounce 0.4s ease;
}

@keyframes bounce {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(0.95); }
    75% { transform: scale(1.05); }
}

/* Results Section Background Change */
.results-section {
    background: linear-gradient(to bottom right, white, #f0fdf4, white);
    transition: background 0.5s ease;
}

.results-section.female-mode {
    background: linear-gradient(to bottom right, white, #fdf2f8, white);
}

.results-section .fixtures-layout,
.results-section .league-table,
.results-section .fixtures-card {
    transition: opacity 0.3s ease;
}

body {
    background: #0a0a0a;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Global Responsive - Same Look */
@media (max-width: 1200px) {
    .container {
        padding: 0 4%;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 3%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
}

/* ---- END RESET & BASE ---- */


/* ========================================
   SECTION 1: HEADER STYLES
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.4s ease, box-shadow 0.4s ease;
    border-bottom: none;
}

.header::before {
    display: none;
}

.header.scrolled {
    background: rgba(6, 20, 13, 0.75);
    backdrop-filter: blur(18px) saturate(1.3);
    -webkit-backdrop-filter: blur(18px) saturate(1.3);
    box-shadow: 0 1px 0 rgba(34, 197, 94, 0.15), 0 8px 32px rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid rgba(34, 197, 94, 0.08);
}

.header.scrolled::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.3), rgba(16, 185, 129, 0.5), rgba(34, 197, 94, 0.3), transparent);
}

.header .logo-text,
.header .nav-link,
.header .nav-arrow {
    color: white;
}

.header .logo-img {
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 8px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

@media (max-width: 1024px) {
    .header-inner {
        padding: 8px 20px;
    }
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 15px;
}

.logo-img {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    padding: 8px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 12px rgba(255,255,255,0.15), inset 0 0 12px rgba(255,255,255,0.05);
    transition: all 0.3s ease;
    margin-top: 0;
}

.header.scrolled .logo-img {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(34, 197, 94, 0.2);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.06);
    padding: 6px;
    height: 50px;
    width: 50px;
    margin-top: 0;
}

.logo-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 20px;
    transition: all 0.3s ease;
}

/* Navigation Menu */
.nav-menu {
    display: block;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 5px;
    align-items: center;
    justify-content: center;
}

.nav-item {
    position: relative;
}

.nav-item:hover .dropdown,
.dropdown:hover {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}

.nav-link {
    display: block;
    padding: 8px 18px;
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 1;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.25) 30%, rgba(34, 197, 94, 0.35) 50%, rgba(34, 197, 94, 0.25) 70%, transparent);
    border-radius: 50px;
    transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.nav-link:hover::before {
    left: 120%;
}

.nav-link:hover {
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.4);
    color: #22c55e;
}

.header.scrolled .nav-link {
    background: transparent;
    backdrop-filter: none;
    border-color: transparent;
    padding: 8px 18px;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.header.scrolled .nav-link:hover {
    background: rgba(34, 197, 94, 0.08);
    border-color: rgba(34, 197, 94, 0.15);
    color: #4ade80;
}

/* Shop button glass red */
.shop-btn-web3 {
    background: rgba(239, 68, 68, 0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-color: rgba(239, 68, 68, 0.35);
    box-shadow: 0 0 24px rgba(239, 68, 68, 0.15);
    animation: web3Float 4s ease-in-out infinite;
}

.shop-btn-web3::before {
    background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.35) 30%, rgba(239, 68, 68, 0.5) 50%, rgba(239, 68, 68, 0.35) 70%, transparent) !important;
}

.shop-btn-web3:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.6);
    color: #f87171;
    box-shadow: 0 0 36px rgba(239, 68, 68, 0.35);
    animation: none;
    transform: translateY(-2px);
}

@keyframes web3Float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.header.scrolled .nav-link:hover {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.2);
}

/* Dropdown Styles */
.dropdown {
    position: fixed;
    top: 75px;
    left: 12px;
    right: 12px;
    width: auto;
    height: 4.5in;
    background: url('../All Asset/assets/dropbck.png') center/cover no-repeat;
    border: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1000;
}

.dropdown-wrapper {
    display: flex;
    height: 100%;
    padding: 30px 40px;
    gap: 40px;
}

.dropdown-left {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dropdown-header {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.dropdown-links-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.dropdown-item {
    display: inline-block;
    padding: 12px 20px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: left;
    background: transparent;
    border: none;
    opacity: 0;
    transform: translateY(-20px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.2) 30%, rgba(34, 197, 94, 0.3) 50%, rgba(34, 197, 94, 0.2) 70%, transparent);
    border-radius: 8px;
    transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
}

.dropdown-item:hover::before {
    left: 120%;
}

.nav-item:hover .dropdown-item,
.dropdown:hover .dropdown-item {
    opacity: 1;
    transform: translateY(0);
}

.dropdown-item:nth-child(1) { transition-delay: 0s; }
.dropdown-item:nth-child(2) { transition-delay: 0.15s; }
.dropdown-item:nth-child(3) { transition-delay: 0.3s; }
.dropdown-item:nth-child(4) { transition-delay: 0.45s; }
.dropdown-item:nth-child(5) { transition-delay: 0.6s; }
.dropdown-item:nth-child(6) { transition-delay: 0.75s; }

.dropdown-item:hover {
    color: #22c55e;
    outline: 2px solid rgba(34, 197, 94, 0.5);
    outline-offset: -2px;
}

.dropdown-right {
    width: 350px;
    flex-shrink: 0;
}

.logo-box {
    width: 100%;
    height: 100%;
    min-height: 300px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.logo-box img {
    max-width: 400px;
    max-height: 300px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* --- DESKTOP PROTECTION --- */
.mobile-hamburger, .mobile-menu-overlay {
    display: none;
}

/* --- MOBILE ONLY --- */
@media (max-width: 1024px) {
    .nav-menu .nav-list {
        display: none;
    }

    .nav-item:hover .dropdown,
    .dropdown:hover {
        display: none;
    }

    .mobile-hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        cursor: pointer;
        z-index: 2000;
    }

    .mobile-hamburger span {
        width: 100%;
        height: 3px;
        background: white;
        border-radius: 4px;
        transition: 0.3s ease;
    }

    .mobile-menu-overlay {
        display: flex;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #0a4d2e 0%, #1a0a3e 50%, #2d1b69 100%);
        z-index: 9999;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.5s cubic-bezier(0.8, 0, 0.2, 1);
        overflow: hidden;
    }

    .mobile-menu-overlay::before {
        content: '';
        position: absolute;
        top: -30%;
        right: -20%;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(34, 197, 94, 0.15), transparent 70%);
        pointer-events: none;
        animation: mobGlowFloat 8s ease-in-out infinite;
    }

    .mobile-menu-overlay::after {
        content: '';
        position: absolute;
        bottom: -20%;
        left: -15%;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(139, 92, 246, 0.2), transparent 70%);
        pointer-events: none;
        animation: mobGlowFloat 10s ease-in-out infinite reverse;
    }

    @keyframes mobGlowFloat {
        0%, 100% { transform: translate(0, 0) scale(1); }
        33% { transform: translate(30px, -20px) scale(1.1); }
        66% { transform: translate(-20px, 30px) scale(0.95); }
    }

    .mobile-vector-bg {
        position: absolute;
        inset: 0;
        pointer-events: none;
        z-index: 0;
    }

    .mobile-vector-bg .vec-circle {
        position: absolute;
        top: 12%;
        left: 8%;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        border: 2px solid rgba(34, 197, 94, 0.2);
        background: rgba(34, 197, 94, 0.04);
        animation: vecFloat 7s ease-in-out infinite;
    }

    .mobile-vector-bg .vec-diamond {
        position: absolute;
        top: 65%;
        right: 10%;
        width: 50px;
        height: 50px;
        border: 2px solid rgba(139, 92, 246, 0.25);
        background: rgba(139, 92, 246, 0.05);
        --r: 45deg;
        animation: vecFloat 9s ease-in-out infinite reverse;
    }

    .mobile-vector-bg .vec-dots {
        position: absolute;
        top: 40%;
        left: 60%;
        width: 100px;
        height: 100px;
        background-image: radial-gradient(circle, rgba(34, 197, 94, 0.25) 2px, transparent 2px);
        background-size: 16px 16px;
        opacity: 0.5;
        animation: vecFloat 11s ease-in-out infinite;
    }

    .mobile-vector-bg .vec-line {
        position: absolute;
        bottom: 30%;
        left: 5%;
        width: 120px;
        height: 2px;
        background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.3), transparent);
        transform: rotate(-30deg);
        animation: vecSlide 6s ease-in-out infinite;
    }

    .mobile-vector-bg .vec-triangle {
        position: absolute;
        top: 25%;
        right: 15%;
        width: 0;
        height: 0;
        border-left: 25px solid transparent;
        border-right: 25px solid transparent;
        border-bottom: 45px solid rgba(139, 92, 246, 0.12);
        transform: rotate(15deg);
        animation: vecFloat 12s ease-in-out infinite;
    }

    @keyframes vecFloat {
        0%, 100% { transform: rotate(var(--r, 0deg)) translate(0, 0); }
        25% { transform: rotate(var(--r, 0deg)) translate(15px, -10px); }
        50% { transform: rotate(var(--r, 0deg)) translate(-10px, 20px); }
        75% { transform: rotate(var(--r, 0deg)) translate(8px, -15px); }
    }

    @keyframes vecSlide {
        0%, 100% { transform: rotate(-30deg) translateX(0); opacity: 0.3; }
        50% { transform: rotate(-30deg) translateX(30px); opacity: 0.7; }
    }

    .mobile-wave-bg {
        position: absolute;
        inset: 0;
        overflow: hidden;
        z-index: 0;
        pointer-events: none;
    }

    .mobile-wave-bg .wave {
        position: absolute;
        width: 200%;
        height: 60%;
        bottom: -15%;
        border-radius: 45%;
        animation: mobileWave linear infinite;
    }

    .mobile-wave-bg .wave-1 {
        left: -50%;
        background: rgba(34, 197, 94, 0.06);
        animation-duration: 7s;
    }

    .mobile-wave-bg .wave-2 {
        left: -30%;
        background: rgba(139, 92, 246, 0.05);
        animation-duration: 10s;
        animation-delay: -3s;
    }

    .mobile-wave-bg .wave-3 {
        left: -70%;
        background: rgba(34, 197, 94, 0.04);
        animation-duration: 13s;
        animation-delay: -6s;
    }

    .mobile-wave-bg .wave-4 {
        left: -45%;
        background: rgba(139, 92, 246, 0.04);
        animation-duration: 9s;
        animation-delay: -2s;
    }

    @keyframes mobileWave {
        0%   { transform: translateX(0)    translateY(0)   scale(1);   }
        25%  { transform: translateX(8%)   translateY(-12%) scale(1.1); }
        50%  { transform: translateX(15%)  translateY(-5%)  scale(0.95); }
        75%  { transform: translateX(5%)   translateY(-15%) scale(1.05); }
        100% { transform: translateX(0)    translateY(0)   scale(1);   }
    }

    .mobile-menu-overlay.active {
        right: 0;
    }

    .mobile-nav-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .mobile-nav-links a {
        color: white;
        text-decoration: none;
        font-size: 1.1rem;
        font-weight: 700;
        margin: 6px 0;
        padding: 14px 40px;
        min-width: 260px;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 2px;
        border: 1.5px solid rgba(255,255,255,0.2);
        border-radius: 14px;
        background: rgba(255,255,255,0.05);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: 0 4px 20px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.1);
        transition: all 0.3s ease, opacity 0.4s ease, transform 0.4s ease;
        opacity: 0;
        transform: translateX(40px);
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

    .mobile-nav-links a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        border-radius: 14px;
        transition: left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: -1;
    }

    .mobile-nav-links a:nth-child(1)::before { background: linear-gradient(135deg, #22c55e, #16a34a); }
    .mobile-nav-links a:nth-child(2)::before { background: linear-gradient(135deg, #f59e0b, #d97706); }
    .mobile-nav-links a:nth-child(3)::before { background: linear-gradient(135deg, #3b82f6, #2563eb); }
    .mobile-nav-links a:nth-child(4)::before { background: linear-gradient(135deg, #ef4444, #dc2626); }
    .mobile-nav-links a:nth-child(5)::before { background: linear-gradient(135deg, #ec4899, #db2777); }
    .mobile-nav-links a:nth-child(6)::before { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
    .mobile-nav-links a:nth-child(7)::before { background: linear-gradient(135deg, #f97316, #ea580c); }
    .mobile-menu-overlay.active .mobile-nav-links a {
        opacity: 1;
        transform: translateX(0);
    }
    .mobile-menu-overlay.active .mobile-nav-links a:nth-child(1) { transition-delay: 0.1s; }
    .mobile-menu-overlay.active .mobile-nav-links a:nth-child(2) { transition-delay: 0.2s; }
    .mobile-menu-overlay.active .mobile-nav-links a:nth-child(3) { transition-delay: 0.3s; }
    .mobile-menu-overlay.active .mobile-nav-links a:nth-child(4) { transition-delay: 0.4s; }
    .mobile-menu-overlay.active .mobile-nav-links a:nth-child(5) { transition-delay: 0.5s; }
    .mobile-menu-overlay.active .mobile-nav-links a:nth-child(6) { transition-delay: 0.6s; }
    .mobile-menu-overlay.active .mobile-nav-links a:nth-child(7) { transition-delay: 0.7s; }

    .mobile-nav-links a:hover {
        color: white;
        border-color: rgba(255,255,255,0.5);
        box-shadow: 0 4px 25px rgba(255,255,255,0.1);
        transform: translateX(5px);
    }

    .mobile-nav-links a:hover::before {
        left: 0;
    }

    .mobile-nav-links a:active::before {
        left: 0;
    }

    .mobile-cta {
        margin-top: 12px !important;
        background: linear-gradient(135deg, #22c55e, #16a34a) !important;
        padding: 14px 40px !important;
        min-width: 260px !important;
        border-radius: 14px !important;
        font-size: 1.1rem !important;
        letter-spacing: 3px;
        border: 1.5px solid rgba(34,197,94,0.3) !important;
        box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3), inset 0 1px 0 rgba(255,255,255,0.15) !important;
    }

    .close-mobile-menu {
        position: absolute;
        top: 20px;
        right: 24px;
        font-size: 3rem;
        background: none;
        border: none;
        color: #22c55e;
        cursor: pointer;
        z-index: 10000;
        line-height: 1;
    }

    .no-scroll {
        overflow: hidden;
    }
}

/* Header Border Line - Green Gradient */
.header-border-line {
    display: none;
}
/* ---- END SECTION 1: HEADER ---- */

/* Background Video - mobile only */
.hero-mobile-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    display: none;
    opacity: 0.15;
}

.hero-mobile-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================
   SECTION 1B: BANNER / HERO
   ======================================== */
.hero-banner {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #050d1e 0%, #031810 40%, #01140a 70%, #050d1e 100%);
    padding: 120px 5% 60px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.25;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: heroGlowPulse 4s ease-in-out infinite alternate;
}

.hero-glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.3), transparent);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.hero-glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 78, 59, 0.4), transparent);
    bottom: -10%;
    right: -10%;
    animation-delay: 2s;
}

@keyframes heroGlowPulse {
    0% { transform: scale(1); opacity: 0.3; }
    100% { transform: scale(1.3); opacity: 0.5; }
}

.hero-particles {
    position: absolute;
    inset: 0;
}

.hero-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #22c55e;
    border-radius: 50%;
    opacity: 0;
    animation: heroParticle 6s linear infinite;
}

.hero-particles span:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.hero-particles span:nth-child(2) { top: 60%; left: 5%; animation-delay: 1s; }
.hero-particles span:nth-child(3) { top: 30%; left: 85%; animation-delay: 2s; }
.hero-particles span:nth-child(4) { top: 70%; left: 90%; animation-delay: 0.5s; }
.hero-particles span:nth-child(5) { top: 10%; left: 50%; animation-delay: 1.5s; }
.hero-particles span:nth-child(6) { top: 80%; left: 30%; animation-delay: 3s; }
.hero-particles span:nth-child(7) { top: 40%; left: 70%; animation-delay: 2.5s; }
.hero-particles span:nth-child(8) { top: 90%; left: 60%; animation-delay: 0.8s; }
.hero-particles span:nth-child(9) { top: 50%; left: 20%; animation-delay: 3.5s; }
.hero-particles span:nth-child(10) { top: 15%; left: 40%; animation-delay: 4s; }

@keyframes heroParticle {
    0% { opacity: 0; transform: translateY(0) scale(1); }
    20% { opacity: 0.8; }
    80% { opacity: 0.8; }
    100% { opacity: 0; transform: translateY(-120px) scale(0.3); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #22c55e;
    background: rgba(34, 197, 94, 0.08);
    margin-bottom: 30px;
    backdrop-filter: blur(4px);
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-family: 'Saira', sans-serif;
}

.hero-highlight {
    background: linear-gradient(135deg, #22c55e, #4ade80, #22c55e);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: heroTextShimmer 3s linear infinite;
}

@keyframes heroTextShimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.hero-btn {
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.hero-btn {
    position: relative;
    overflow: hidden;
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-wipe {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.12);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: 1;
}

.hero-btn:hover .btn-wipe {
    transform: translateX(0);
}

.hero-btn-primary {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.5);
}

.hero-btn-secondary {
    background: transparent;
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.4);
}

.hero-btn-secondary:hover {
    background: rgba(34, 197, 94, 0.1);
    border-color: #22c55e;
    transform: translateY(-3px);
}

.hero-btn-live {
    background: rgba(220, 38, 38, 0.15);
    color: #ff6b6b;
    border: 2px solid rgba(255, 107, 107, 0.4);
    animation: liveBreathe 2s ease-in-out infinite;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-btn-live::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff4444;
    animation: liveDotPulse 1.5s ease-in-out infinite;
    flex-shrink: 0;
}

.hero-btn-live:hover {
    background: rgba(220, 38, 38, 0.25);
    border-color: #ff4444;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 68, 68, 0.3);
}

@keyframes liveBreathe {
    0%, 100% { box-shadow: 0 0 8px rgba(255, 68, 68, 0.2); }
    50% { box-shadow: 0 0 25px rgba(255, 68, 68, 0.5); }
}

@keyframes liveDotPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
}

.hero-bottom-cycle {
    position: absolute;
    bottom: 55px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 400px;
    height: 40px;
}

.hero-flash-indicator,
.hero-scroll-indicator {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
}

.hero-flash-indicator {
    color: rgba(255, 255, 255, 0.3);
    animation: flashCycle 6s ease-in-out infinite;
}

.hero-scroll-indicator {
    color: rgba(255, 255, 255, 0.3);
    animation: scrollCycle 6s ease-in-out infinite;
}

.flash-arrow {
    display: block;
    font-size: 1.4rem;
    line-height: 1;
    animation: flashArrow 1s ease-in-out infinite;
}

.scroll-arrow {
    font-size: 1.2rem;
    animation: heroArrow 1.5s ease-in-out infinite;
}

@keyframes flashCycle {
    0% { opacity: 0; }
    5% { opacity: 1; }
    30% { opacity: 1; }
    38% { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes scrollCycle {
    0% { opacity: 0; }
    48% { opacity: 0; }
    53% { opacity: 1; }
    100% { opacity: 1; }
}

@keyframes flashArrow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

@keyframes heroArrow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* 3D Player Carousel - Step-based JS rotation */
:root {
  --carousel-radius: 150px;
}

.carousel-viewport {
  width: 280px;
  height: 500px;
  perspective: 1200px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.left-pos { left: 8%; }
.right-pos { right: 8%; }

.carousel-3d {
  width: 100%;
  height: 100%;
  position: absolute;
  transform-style: preserve-3d;
  transition: transform 1s ease-in-out;
}

.carousel-item {
  position: absolute;
  width: 240px;
  height: 440px;
  left: 50%;
  top: 50%;
  margin-left: -120px;
  margin-top: -220px;
  display: flex;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
  border: 3px solid #10b981;
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

.carousel-item:nth-child(1) { transform: rotateY(0deg) translateZ(var(--carousel-radius)); }
.carousel-item:nth-child(2) { transform: rotateY(90deg) translateZ(var(--carousel-radius)); }
.carousel-item:nth-child(3) { transform: rotateY(180deg) translateZ(var(--carousel-radius)); }
.carousel-item:nth-child(4) { transform: rotateY(270deg) translateZ(var(--carousel-radius)); }

@media (max-width: 768px) {
    .carousel-viewport {
        --carousel-radius: 140px;
        width: 180px;
        height: 400px;
        overflow: hidden;
    }
    .carousel-item {
        width: 160px;
        height: 320px;
        margin-left: -80px;
        margin-top: -160px;
    }
    .left-pos { left: 15px; }
    .right-pos { right: 15px; }
    .carousel-item img {
        border: none;
        box-shadow: none;
    }
    .hero-banner {
        height: 100vh;
        padding: 100px 5% 50px;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-badge {
        font-size: 0.7rem;
        padding: 6px 18px;
    }
    .hero-subtitle {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }
    .hero-btn {
        padding: 12px 28px;
        font-size: 0.8rem;
    }
    .hero-btn-live {
        font-size: 0.8rem;
        padding: 12px 28px;
    }
    .hero-glow-1 {
        width: 400px;
        height: 400px;
    }
    .hero-glow-2 {
        width: 300px;
        height: 300px;
    }
}

/* ========================================
   SECTION 1C: WELCOME ABOUT
   ======================================== */
.about-section {
    background: transparent;
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    pointer-events: none;
}

.about-card {
    background: transparent;
    border: 1px solid rgba(34, 197, 94, 0.15);
    border-radius: 24px;
    padding: 60px 60px 50px;
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 40px rgba(34, 197, 94, 0.05), inset 0 1px 0 rgba(255,255,255,0.05);
    transition: border-color 0.6s ease, box-shadow 0.6s ease;
    border-color: rgba(34, 197, 94, 0.15);
}

.about-section.in-view .about-card {
    animation: borderFloatIn 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards, borderGlow 3s ease-in-out 1.2s infinite;
}

@keyframes borderFloatIn {
    0% {
        border-color: rgba(34, 197, 94, 0);
        box-shadow: 0 0 0px rgba(34, 197, 94, 0);
        transform: translateY(24px) scale(0.97);
        opacity: 0.6;
    }
    60% {
        border-color: rgba(34, 197, 94, 0.6);
        box-shadow: 0 0 40px rgba(34, 197, 94, 0.15);
        transform: translateY(-4px) scale(1.005);
        opacity: 1;
    }
    100% {
        border-color: rgba(34, 197, 94, 0.3);
        box-shadow: 0 0 20px rgba(34, 197, 94, 0.08), 0 0 40px rgba(34, 197, 94, 0.05), inset 0 1px 0 rgba(255,255,255,0.05);
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.about-logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: contain;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.2);
    display: block;
    margin: 0 auto 15px;
    animation: aboutIconFloat 3s ease-in-out infinite;
}

@keyframes aboutIconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.about-title {
    font-family: 'Saira', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 1.3;
    margin-bottom: 5px;
}

.about-title-highlight {
    background: linear-gradient(135deg, #22c55e, #4ade80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #22c55e, #16a34a);
    border-radius: 2px;
    margin: 20px auto 30px;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}

.about-text {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 18px;
}

.about-text:last-of-type {
    margin-bottom: 35px;
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.about-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 28px;
    background: rgba(34, 197, 94, 0.06);
    border: 1px solid rgba(34, 197, 94, 0.15);
    border-radius: 16px;
    min-width: 130px;
}

.stat-num {
    font-size: 1.4rem;
    font-weight: 900;
    color: #22c55e;
    text-transform: uppercase;
    font-family: 'Saira', sans-serif;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* ========================================
   SECTION 2B: UPCOMING MATCHES STYLES
   ======================================== */
.match-section {
    background: linear-gradient(to bottom right, #121212, #1a2e20, #121212);
    padding: 56px 28px;
    position: relative;
    min-height: auto;
    display: flex;
    gap: 20px;
    overflow: visible;
}

.match-section .section-title {
    color: #ffffff;
    position: relative;
    display: inline-block;
    padding: 15px 40px;
    background: rgba(34, 197, 94, 0.15);
    border-radius: 50px;
    border: 1px solid rgba(34, 197, 94, 0.3);
    margin-bottom: 40px;
    z-index: 5;
}

/* Tabs Styling */
.tabs {
    border-bottom: 2px solid rgba(34, 197, 94, 0.3);
    margin-bottom: 30px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    position: relative;
    z-index: 5;
}

.tabs button {
    background: none;
    border: none;
    padding: 12px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    border-radius: 8px 8px 0 0;
}

.tabs button:hover {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.tabs button.active {
    border-bottom: 3px solid #22c55e;
    color: #22c55e;
    background: rgba(34, 197, 94, 0.1);
}

/* Slider Wrapper */
.slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 20px;
    z-index: 5;
    overflow: visible;
}

.match-slider {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 20px 0;
    justify-content: flex-start;
}

.match-slider::-webkit-scrollbar {
    display: none;
}

/* Match Cards - Upcoming Matches */
.match-card {
    min-width: 300px;
    max-width: 300px;
    height: 400px;
    padding: 20px;
    background: #dcfce7;
    border: 2px solid #86efac;
    border-radius: 24px;
    scroll-snap-align: start;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

.match-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Women's Match Cards - Pink */
.match-card[data-category="women"] {
    background: #fce7f3;
    border-color: #f9a8d4;
}

.match-card[data-category="women"]:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(157, 23, 77, 0.4);
}

/* Men's Match Cards - Blue */
.match-card[data-category="men"] {
    background: #dbeafe;
    border-color: #93c5fd;
}

.match-card[data-category="men"]:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(30, 64, 175, 0.4);
}

/* Friendly Match Cards - Orange */
.match-card[data-category="friendly"] {
    background: #ffedd5;
    border-color: #fed7aa;
}

.match-card[data-category="friendly"]:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(234, 88, 12, 0.4);
}

.match-card:hover .league-info p,
.match-card:hover .date-large,
.match-card:hover .team,
.match-card:hover .vs-text {
    color: white;
}

.match-card:hover .team-logo {
    background: var(--green-400);
    color: var(--green-900);
}

/* Featured Card - Purple */
.match-card.featured {
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    color: white;
    border: none;
}

.match-card.featured .league-info p {
    color: var(--green-200);
}

.match-card.featured .vs-text {
    color: #dc2626;
}

.match-card.featured:hover {
    background: rgba(255, 255, 255, 0.95);
}

.match-card.featured:hover .league-info p,
.match-card.featured:hover .date-large,
.match-card.featured:hover .team {
    color: var(--green-900);
}

.match-card.featured:hover .team-logo {
    background: var(--green-900);
    color: white;
}

/* Result Card (Completed Match) */
.match-card.result-card {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f2744 100%);
    color: white;
    border: none;
}

.match-card.result-card .league-info p {
    color: #a8d8ea;
}

.match-card.result-card .date-large {
    background: #c41e3a;
    color: white;
}

.match-card.result-card .venue {
    color: rgba(255,255,255,0.7);
}

.match-card.result-card .score {
    font-size: 2rem;
    font-weight: 800;
    color: #ffd700;
    text-align: center;
    padding: 0 20px;
}

.match-card.result-card .vs-text {
    display: none;
}

.match-card.result-card .team {
    flex: 1;
}

.match-card.result-card .vs-text {
    display: none;
}

/* Live Card (Match In Progress) */
.match-card.live-card {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: white;
    border: 3px solid #fbbf24;
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.5);
}

.match-card.live-card .league-info p {
    color: #fecaca;
}

.match-card.live-card .date-large {
    background: #fbbf24;
    color: #991b1b;
    animation: pulse 1s infinite;
}

.match-card.live-card .venue {
    color: rgba(255,255,255,0.8);
}

.match-card.live-card .vs-text {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fbbf24;
}

.match-card.live-card:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #7f1d1d 100%);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* League Info */
.league-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.league-info img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: contain;
}

.league-badge {
    width: 35px;
    height: auto;
    border-radius: 4px;
}

.league-info p {
    font-size: 0.8rem;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
}

.league-info p span {
    font-size: 0.75rem;
    color: #666;
    font-weight: 400;
}

.date-large {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--green-900);
    margin: 8px 0;
    text-align: center;
}

.match-card.featured .date-large {
    color: white;
}

/* Teams */
.teams {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.team {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Saira', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
}

.team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: 'Saira', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.2;
    color: #333;
    flex: 1;
}

.team-logo {
    width: 32px;
    height: 32px;
    background: var(--green-900);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    flex-shrink: 0;
}

.match-card.featured .team {
    color: white;
}

.match-card.featured .team-logo {
    background: var(--green-400);
    color: var(--green-900);
}

.team .team-name {
    font-size: 0.85rem;
    font-weight: 800;
    color: inherit;
    text-align: center;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    word-wrap: break-word;
}

.team-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: contain;
    background: white;
    padding: 2px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.venue {
    font-size: 0.7rem;
    color: #666;
    text-align: center;
    margin-top: 5px;
    font-style: italic;
}

.match-card[data-category="women"] .venue,
.match-card[data-category="men"] .venue,
.match-card[data-category="friendly"] .venue {
    color: #555;
}

.vs-text {
    font-size: 1.5rem;
    font-weight: 900;
    color: #dc2626;
    text-align: center;
}

/* Navigation Buttons */
.slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 5;
    overflow: visible;
}

.nav-btn {
    background: linear-gradient(135deg, var(--green-500), var(--green-600));
    border: 2px solid var(--green-400);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    position: absolute;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.nav-btn:hover {
    background: linear-gradient(135deg, var(--green-400), var(--green-500));
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.nav-btn.prev {
    left: -25px;
    top: 50%;
    transform: translateY(-50%);
}

.nav-btn.prev:hover {
    transform: translateY(-50%) scale(1.1);
}

.nav-btn.next {
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
}

.nav-btn.next:hover {
    transform: translateY(-50%) scale(1.1);
}

/* Responsive - Keep same look across all sizes */
@media (max-width: 768px) {
    .slider-wrapper {
        padding: 0 10px;
    }
    
    .match-card {
        min-width: 260px;
        max-width: 260px;
        height: auto;
        padding: 15px;
    }
    
    .date-large {
        font-size: 1.8rem;
    }
    
    .nav-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .nav-btn.prev {
        left: 5px;
    }
    
    .nav-btn.next {
        right: 5px;
    }
}

/* ---- END SECTION 2B: UPCOMING MATCHES ---- */


/* ========================================
   SECTION 3: RESULTS / FIXTURES STYLES
   ======================================== */

.section {
    padding: 80px 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #14532d;
}

.results-section {
    background: linear-gradient(to bottom right, white, #f0fdf4, white);
    min-height: auto;
    padding: 60px 5%;
}

.results-section.female-mode {
    background: linear-gradient(to bottom right, white, #fdf2f8, white);
}

/* ========================================
   LEAGUE TABLE — NWFL Design (Sample)
   ======================================== */
:root {
  --nwfl-green: #1b5e20;
  --nwfl-maroon: #6d0e0e;
  --nwfl-gold: #c88a2c;
  --nwfl-cream: #fef9ef;
  --nwfl-dark: #1a1a2e;
  --nwfl-card-bg: #ffffff;
}

.nwfl-section-container {
  display: flex;
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
  align-items: flex-start;
}

/* ── Left Column: Sidebar Cards ── */
.nwfl-sidebar {
  width: 320px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-display-card {
  background: var(--nwfl-card-bg);
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  border: 1px solid #eef2f6;
}

.sidebar-display-card .card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.sidebar-display-card .card-head .icon-badge {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}

.icon-badge.bg-maroon { background: var(--nwfl-maroon); }
.icon-badge.bg-green { background: var(--nwfl-green); }
.icon-badge.bg-gold { background: var(--nwfl-gold); }

.sidebar-display-card .card-head h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  color: var(--nwfl-dark);
}

.sidebar-display-card .stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.sidebar-display-card .stat-cell {
  background: #f8fafc;
  border-radius: 10px;
  padding: 10px 8px;
  text-align: center;
}

.stat-cell .num {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--nwfl-dark);
  display: block;
}

.stat-cell .lbl {
  font-size: 0.65rem;
  color: #8899aa;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.sidebar-display-card .mini-standings {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-display-card .mini-standings li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid #f0f2f5;
  font-size: 0.82rem;
}

.mini-standings li:last-child { border-bottom: none; }
.mini-standings .rpos { font-weight: 700; color: #8899aa; width: 22px; }
.mini-standings .rteam { flex: 1; font-weight: 600; color: var(--nwfl-dark); }
.mini-standings .rpts { font-weight: 800; color: var(--nwfl-green); }

/* HTML class name overrides to match sidebar cards */
.left-panel-column {
  width: 320px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.left-panel-column .branded-heading {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--nwfl-dark);
  margin: 0 0 4px;
}

.left-panel-column .accent-text {
  color: var(--nwfl-green);
}

.left-panel-column .branded-subtext {
  font-size: 0.82rem;
  color: #667788;
  margin: 0 0 16px;
  line-height: 1.4;
}

.sidebar-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.sidebar-card-header .badge-num {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}

.badge-num.bg-green { background: var(--nwfl-green); }
.badge-num.bg-maroon { background: var(--nwfl-maroon); }
.badge-num.bg-gold { background: var(--nwfl-gold); }

.sidebar-card-header h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  color: var(--nwfl-dark);
}

.sidebar-card-header .meta-label {
  font-size: 0.65rem;
  color: #8899aa;
  margin: 2px 0 0;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.sidebar-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.grid-stat-box {
  background: #f8fafc;
  border-radius: 10px;
  padding: 12px 8px;
  text-align: center;
}

.grid-stat-box.large-stat {
  grid-column: 1 / -1;
  padding: 16px;
}

.grid-stat-box .v-num {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--nwfl-dark);
  display: block;
}

.grid-stat-box .v-lbl {
  font-size: 0.65rem;
  color: #8899aa;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  display: block;
  margin-top: 2px;
}

/* Colored stat boxes */
.stat-points {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe) !important;
}
.stat-points .v-num { color: #1e40af !important; }

.stat-played {
  background: linear-gradient(135deg, #fef3c7, #fde68a) !important;
}
.stat-played .v-num { color: #92400e !important; }

.stat-gd {
  background: linear-gradient(135deg, #d1fae5, #a7f3d0) !important;
}
.stat-gd .v-num { color: #065f46 !important; }

/* Brand header child elements */
.brand-text-block h2 {
  margin: 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

.brand-text-block p {
  margin: 2px 0 0;
  color: rgba(255,255,255,0.8);
  font-size: 0.75rem;
}

.nwfl-logo-svg,
.nwfl-logo-img {
  width: 96px;
  height: auto;
  flex-shrink: 0;
}

/* Gender toggle standalone */
.gender-toggle-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.gender-toggle-bar .lbl-toggle {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--nwfl-dark);
}

.switch-toggle {
  position: relative;
  width: 80px;
  height: 38px;
  background: var(--nwfl-green);
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.switch-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.switch-toggle .slider-round {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

.switch-toggle input:checked + .slider-round {
  transform: translateX(42px);
}

.switch-toggle:has(input:checked) {
  background: var(--nwfl-maroon);
}

.toggle-slider-rs {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

.switch-toggle input:checked + .toggle-slider-rs {
  transform: translateX(42px);
}

/* Table row elements */
.row-index {
  display: inline-block;
  width: 28px;
  height: 28px;
  line-height: 28px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.8rem;
  text-align: center;
  background: #f0f2f5;
  color: #374151;
}

.row-index.highlight-gold { background: #fbbf24; color: #78350f; }
.row-index.highlight-green { background: #bbf7d0; color: #14532d; }

.team-title-text {
  font-weight: 600;
  font-size: 0.82rem;
  color: #333;
}

.team-title-text.text-green { color: var(--nwfl-green); }

.our-team-row {
  background: rgba(34, 197, 94, 0.12);
  border-left: 4px solid #22c55e;
}

.our-team-row td { font-weight: 700; }

/* Female mode adjustments */
.results-section.female-mode .gender-toggle-bar .lbl-toggle {
  color: #9d174d;
}

.results-section.female-mode .nwfl-brand-header {
  background: linear-gradient(135deg, #9d174d, #db2777);
}

.results-section.female-mode .nwfl-league-table thead {
  background: #9d174d;
}

.results-section.female-mode .our-team-row {
  background: rgba(157, 23, 77, 0.12);
  border-left-color: #9d174d;
}

.results-section.female-mode .row-index.highlight-green {
  background: #fbcfe8;
  color: #9d174d;
}

.results-section.female-mode .team-title-text.text-green {
  color: #9d174d;
}

.results-section.female-mode .badge-num.bg-green {
  background: #9d174d;
}

.results-section.female-mode .branded-heading .accent-text {
  color: #9d174d;
}

.results-section.female-mode .sidebar-display-card {
  border-color: #fbcfe8;
}

.results-section.female-mode .nwfl-league-table tbody::-webkit-scrollbar-thumb {
  background: #9d174d;
}

/* Responsive */
@media (max-width: 900px) {
  .nwfl-section-container {
    flex-direction: column;
  }
  .left-panel-column {
    width: 100%;
    min-width: unset;
  }
  .right-table-column {
    width: 100%;
  }
  .nwfl-league-table {
    font-size: 0.7rem;
  }
  .nwfl-league-table th,
  .nwfl-league-table td {
    padding: 8px 4px;
  }
  .left-panel-column .branded-heading {
    font-size: 1.5rem;
  }
}

/* ── Right Column: Table ── */
.right-table-column {
  flex: 1;
  min-width: 0;
}

.nwfl-table-col {
  flex: 1;
  min-width: 0;
}

.table-card-wrapper {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  border: 1px solid #eef2f6;
}

/* Brand Header */
.nwfl-brand-header {
  background: linear-gradient(135deg, var(--nwfl-green), #2e7d32);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nwfl-brand-header .brand-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.nwfl-brand-header .brand-title .shield-icon {
  font-size: 1.3rem;
}

/* Gender Toggle inside brand header */
.gender-toggle-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
}


/* League Table */
.nwfl-league-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  white-space: nowrap;
}

.nwfl-league-table thead {
  background: var(--nwfl-maroon);
  color: #ffffff;
}

/* Men's table - different header color */
.men-table thead {
  background: #0d3b3a;
}

.nwfl-league-table th {
  padding: 12px 10px;
  text-align: center;
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.nwfl-league-table th:nth-child(1) { width: 10%; text-align: center; padding-left: 16px; }
.nwfl-league-table th:nth-child(2) { width: 34%; text-align: left; }
.nwfl-league-table th:nth-child(3),
.nwfl-league-table th:nth-child(4),
.nwfl-league-table th:nth-child(5),
.nwfl-league-table th:nth-child(6) { width: 7%; text-align: right; padding-right: 4px; }
.nwfl-league-table th:nth-child(7) { width: 7%; text-align: right; padding-right: 4px; }
.nwfl-league-table th:nth-child(8) { width: 7%; text-align: right; padding-right: 4px; }
.nwfl-league-table th:nth-child(9) { width: 14%; text-align: center; }

.nwfl-league-table td {
  padding: 10px;
  text-align: center;
  border-bottom: 1px solid #f0f2f5;
  font-weight: 500;
  color: #333;
}

/* Match column widths between header and body cells for proper alignment */
.nwfl-league-table td:nth-child(1) { width: 10%; text-align: center; padding-left: 16px; }
.nwfl-league-table td:nth-child(2) { width: 34%; text-align: left; font-weight: 600; }
.nwfl-league-table td:nth-child(3),
.nwfl-league-table td:nth-child(4),
.nwfl-league-table td:nth-child(5),
.nwfl-league-table td:nth-child(6) { width: 7%; text-align: right; padding-right: 4px; }
.nwfl-league-table td:nth-child(7) { width: 7%; text-align: right; padding-right: 4px; }
.nwfl-league-table td:nth-child(8) { width: 7%; text-align: right; padding-right: 4px; font-weight: 700; }
.nwfl-league-table td:nth-child(9) { width: 14%; text-align: center; }

.nwfl-league-table tbody tr:hover {
  background: #f5f9f5;
}

/* Show only 5 rows, rest scrollable */
.nwfl-league-table tbody {
  display: block;
  max-height: 195px;
  overflow-y: auto;
}
.nwfl-league-table thead {
  display: table;
  width: 100%;
  table-layout: fixed;
}
.nwfl-league-table tbody tr {
  display: table;
  width: 100%;
  table-layout: fixed;
}
.nwfl-league-table tbody::-webkit-scrollbar {
  width: 5px;
}
.nwfl-league-table tbody::-webkit-scrollbar-track {
  background: #f1f5f9;
}
.nwfl-league-table tbody::-webkit-scrollbar-thumb {
  background: var(--nwfl-green);
  border-radius: 10px;
}

/* Accent top rows */
.nwfl-league-table tbody tr:nth-child(-n+4) {
  border-left: 4px solid var(--nwfl-green);
}

.nwfl-league-table tbody tr:nth-child(-n+4) td:first-child {
  padding-left: 12px;
}

/* Club cell inside table */
.nwfl-club-cell {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nwfl-club-logo {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e2e8f0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  color: #fff;
}

.nwfl-club-name {
  font-weight: 600;
}

/* Position badge */
.nwfl-pos-badge {
  display: inline-block;
  width: 26px;
  height: 26px;
  line-height: 26px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.75rem;
  text-align: center;
}

.nwfl-pos-badge.gold { background: #fbbf24; color: #78350f; }
.nwfl-pos-badge.green { background: #bbf7d0; color: #14532d; }
.nwfl-pos-badge.blue { background: #bfdbfe; color: #1e3a5f; }
.nwfl-pos-badge.gray { background: #e5e7eb; color: #374151; }

/* Form dots */
.form-dots,
.nwfl-form-dots {
  display: inline-flex;
  gap: 3px;
  align-items: center;
}

.dot,
.nwfl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.dot.win, .nwfl-dot.win { background: #16a34a; }
.dot.draw, .nwfl-dot.draw { background: #f59e0b; }
.dot.loss, .nwfl-dot.loss { background: #dc2626; }

/* Scroll buttons */
.scroll-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: #002744;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.scroll-btn:hover {
    background: #16a34a;
    transform: translateY(-50%) scale(1.1);
}

.scroll-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.table-container {
    flex: 1;
    overflow-y: auto;
}
/* ---- END SECTION 3: RESULTS / FIXTURES ---- */


/* ========================================
   SECTION 3B: FIXTURES WITH PITCH VISUAL
   ======================================== */
.pitch-section {
    background: linear-gradient(to bottom, white, #f0fdf4);
    padding: 60px 0;
}

.pitch-layout {
    max-width: 800px;
    margin: 0 auto;
}

.pitch-container {
    width: 100%;
    margin: 0;
}

.pitch-container .soccer-pitch {
    height: 220px;
    position: relative;
}

.pitch-standings {
    text-align: center;
}

.pitch-standings h2 {
    color: #0a2e1f;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

/* Teams Row on Pitch */
.pitch-teams-row {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 40px;
    z-index: 10;
    width: 90%;
    justify-content: center;
}

.pitch-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.pitch-team.home {
    align-items: flex-end;
}

.pitch-team.away {
    align-items: flex-start;
}

.pitch-team-logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: contain;
    background: white;
    padding: 5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.pitch-badge {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.pitch-badge.pink {
    background: linear-gradient(135deg, #14532d, #22c55e);
}

.results-section.female-mode .pitch-container .soccer-pitch {
    background: linear-gradient(135deg, #14532d, #166534);
}

.team-badge-generated.pink,
.pitch-badge.pink {
    background: linear-gradient(135deg, #14532d, #22c55e);
}

.fixture-date-box.pink {
    background: linear-gradient(135deg, #14532d, #166534);
}

.pitch-team-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    white-space: nowrap;
}

.vs-badge {
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1.2rem;
    font-weight: 900;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Female Pitch Styling */
.results-section.female-mode .pitch-container .soccer-pitch {
    background: linear-gradient(#22c55e, #16a34a);
}

.team-badge-generated.pink,
.pitch-badge.pink {
    background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.fixture-date-box.pink {
    background: linear-gradient(#22c55e, #16a34a);
}

.soccer-pitch {
    height: 320px;
    background: linear-gradient(#22c55e, #16a34a);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.pitch-lines {
    position: absolute;
    width: 90%;
    height: 85%;
    border: 3px solid white;
    border-radius: 12px;
    opacity: 0.9;
}

.center-circle {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 3px solid white;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.center-line {
    position: absolute;
    width: 100%;
    height: 3px;
    background: white;
    top: 50%;
    opacity: 0.8;
}

.goal-left, .goal-right {
    position: absolute;
    width: 50px;
    height: 80px;
    border: 6px solid white;
    top: 50%;
    transform: translateY(-50%);
}

.goal-left { left: 3%; }
.goal-right { right: 3%; }

.vs-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.8);
    padding: 15px 50px;
    border-radius: 50px;
    z-index: 10;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.vs-text {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
}

.fixture-teams {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 30px 20px;
    background: white;
    margin-top: -10px;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.home-team, .away-team {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #0a2e1f;
}

.team-logo-pitch {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: contain;
    background: white;
    padding: 5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.team-badge-generated {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.fixture-date-box {
    background: #0a2e1f;
    color: white;
    padding: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 8px;
    margin-top: 20px;
    display: inline-block;
}

.fixture-date-box i {
    margin-right: 10px;
}

.our-teams {
    text-align: center;
    margin-top: 40px;
}

.our-teams-btn {
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 16px 50px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.our-teams-btn:hover {
    background: #0a2e1f;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .fixture-teams {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .soccer-pitch {
        height: 250px;
    }
    
    .vs-text {
        font-size: 1.8rem;
    }
}

/* ---- END SECTION 3B: FIXTURES WITH PITCH VISUAL ---- */


/* ========================================
   SECTION 3B: FUTURISTIC RESULTS TABLE
   ======================================== */
.futuristic-results {
    padding: 120px 5%;
    position: relative;
    min-height: auto;
    background: linear-gradient(135deg, #0a0a1a 0%, #0d2818 30%, #0a0a0a 70%, #0d1a2e 100%);
}



.futuristic-results .section-title {
    color: #ffffff;
    text-align: center;
    font-size: 2.6rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-shadow: 0 0 30px rgba(34, 197, 94, 0.3);
    position: relative;
    z-index: 1;
}

.tab-toggle-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.tab-toggle {
    display: flex;
    gap: 0;
    border-radius: 50px;
    overflow: hidden;
}

.tab-toggle .tab-btn {
    padding: 12px 28px;
    border: none;
    background: transparent;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.tab-toggle .tab-btn:not(:last-child) {
    border-right: 1px solid rgba(34,197,94,0.15);
}

.glass-toggle {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(34, 197, 94, 0.2) !important;
}

.glass-toggle .tab-btn {
    color: rgba(255, 255, 255, 0.6) !important;
}

.glass-toggle .tab-btn.active {
    background: linear-gradient(135deg, #22c55e, #16a34a) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4) !important;
}

.glass-toggle .tab-btn:hover {
    background: rgba(34, 197, 94, 0.15) !important;
    color: white !important;
}

.result-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

@media (min-width: 769px) {
    .result-card-grid .result-card:nth-child(n+7) {
        display: none;
    }
}

/* ========================================
   RESULTS — SCHEDULE-LIST DESIGN
   ======================================== */

/* Master container */
.futuristic-results .upcoming-feature-container {
    display: flex;
    max-width: 1360px;
    margin: 0 auto;
    background-color: #1a1e24;
    background-image: linear-gradient(rgba(26, 30, 36, 0.92), rgba(26, 30, 36, 0.92));
    overflow: hidden;
    border-radius: 4px;
}

/* Left: schedule list wrapper */
.futuristic-results .schedule-list-wrapper {
    flex: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.futuristic-results .schedule-list {
    display: flex;
    flex-direction: column;
    max-height: 470px;
    overflow-y: auto;
    scrollbar-width: none;
}

.futuristic-results .schedule-list::-webkit-scrollbar {
    display: none;
}

/* Schedule rows */
.futuristic-results .schedule-row {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 30px;
    transition: background 0.3s ease;
    cursor: default;
    position: relative;
}

.futuristic-results .schedule-row::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-radius: 2px 0 0 2px;
    transition: all 0.3s ease;
    pointer-events: none;
}

.futuristic-results .schedule-row:hover {
    background: rgba(255, 255, 255, 0.06);
}

.futuristic-results .schedule-row:hover::after {
    width: 4px;
    height: 60%;
}

.futuristic-results .result-win.schedule-row::after {
    background: #22c55e;
    box-shadow: -2px 0 10px rgba(34, 197, 94, 0.3);
}

.futuristic-results .result-loss.schedule-row::after {
    background: #dc2626;
    box-shadow: -2px 0 10px rgba(220, 38, 38, 0.3);
}

.futuristic-results .result-draw.schedule-row::after {
    background: #f59e0b;
    box-shadow: -2px 0 10px rgba(245, 158, 11, 0.3);
}

.futuristic-results .schedule-row:last-child {
    border-bottom: none;
}

.futuristic-results .match-main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-right: 30px;
}

.futuristic-results .teams-versus-line {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 16px;
    margin-bottom: 6px;
}

.futuristic-results .team-title-left,
.futuristic-results .team-title-right {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0.5px;
    color: #ffffff;
    text-transform: uppercase;
    flex: 1;
}

.futuristic-results .team-title-left {
    text-align: right;
}

.futuristic-results .team-title-right {
    text-align: left;
}

/* Winning team glow */
.futuristic-results .team-title-left.win-glow,
.futuristic-results .team-title-right.win-glow {
    color: #22c55e;
}

.futuristic-results .score-divider {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
    min-width: 60px;
    text-align: center;
}

.futuristic-results .score-divider.win-color {
    color: #4ade80;
}

.futuristic-results .result-loss .score-divider {
    color: #f87171;
}

.futuristic-results .result-draw .score-divider {
    color: #fbbf24;
}

.futuristic-results .match-timestamp {
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    letter-spacing: 0.5px;
    color: #aaaaaa;
}

/* Right: angled banner — red for men */
.futuristic-results .featured-banner-side {
    flex: 1;
    background-color: #b71c1c;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 50px 40px 90px;
    position: relative;
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
    margin-left: -60px;
}

/* Skyblue banner for women */
.futuristic-results .gender-womens .featured-banner-side {
    background-color: #0096c7;
}

.futuristic-results .gender-womens .banner-btn:hover {
    background: #ffffff;
    color: #0096c7;
}

.futuristic-results .banner-inner-content {
    color: #ffffff;
    max-width: 280px;
}



.futuristic-results .banner-title {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.2;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.futuristic-results .banner-body-text {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.futuristic-results .banner-btn {
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 28px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.futuristic-results .banner-btn:hover {
    background: #ffffff;
    color: #b71c1c;
}

/* Responsive */
@media (max-width: 850px) {
    .futuristic-results .upcoming-feature-container {
        flex-direction: column-reverse;
    }

    .futuristic-results .featured-banner-side {
        clip-path: none;
        margin-left: 0;
        padding: 40px 30px;
    }

    .futuristic-results .banner-inner-content {
        max-width: 100%;
        text-align: center;
    }

    .futuristic-results .match-main-content {
        padding-right: 0;
    }
}

@media (max-width: 550px) {
    .futuristic-results .teams-versus-line {
        flex-direction: column;
        gap: 4px;
    }

    .futuristic-results .team-title-left,
    .futuristic-results .team-title-right {
        text-align: center;
    }

    .futuristic-results .schedule-row {
        padding: 16px 12px;
    }

    .futuristic-results .score-divider {
        font-size: 16px;
        min-width: 44px;
    }

    .futuristic-results .team-title-left,
    .futuristic-results .team-title-right {
        font-size: 13px;
    }
}


/* ========================================
/* ---- TEAM SECTIONS ---- */
   ======================================== */
/* Men's Section Layout Wrapper */
/* ---- TEAM SECTION: MEN'S TEAM ---- */
.mens-team-section {
    width: 100%;
    background: linear-gradient(135deg, #0a0f1a 0%, #0d2818 40%, #0a0a0a 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Web3 glow orbs */
.mens-team-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 600px 400px at 10% 30%, rgba(34, 197, 94, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 500px 500px at 90% 70%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
        radial-gradient(circle 300px at 50% 50%, rgba(34, 197, 94, 0.04) 0%, transparent 100%);
}

/* Tech grid overlay */
.mens-team-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(34, 197, 94, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34, 197, 94, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 70%);
}

.mens-team-section .team-row {
    /* default flex-direction: row keeps image on left */
}

.mens-team-section .team-description {
    color: #ffffff;
}

.mens-team-section .team-btn-outline {
    border-color: rgba(34, 197, 94, 0.4);
    color: #22c55e;
}

.mens-team-section .team-btn-outline:hover {
    color: #fff;
    border-color: #22c55e;
}

.mens-team-section .team-btn-outline:hover .btn-text {
    color: #fff;
}

.team-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    min-height: 500px;
    max-width: 1400px;
    margin: 0 auto;
}

.team-image-col {
    width: 50%;
    display: flex;
    justify-content: center;
    position: relative;
    transition: width 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.team-content-col {
    width: 50%;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: width 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.mens-team-section .team-image-col:hover,
.team-section-womens .team-image-col:hover,
.mens-team-section:hover .team-image-col,
.team-section-womens:hover .team-image-col {
    width: 55%;
}

.mens-team-section .team-image-col:hover ~ .team-content-col,
.team-section-womens .team-image-col:hover ~ .team-content-col,
.mens-team-section:hover .team-content-col,
.team-section-womens:hover .team-content-col {
    width: 45%;
}

/* Push reverse: hover on content side expands content, shrinks image */
.mens-team-section:has(.team-content-col:hover) .team-image-col,
.team-section-womens:has(.team-content-col:hover) .team-image-col {
    width: 45%;
}

.mens-team-section:has(.team-content-col:hover) .team-content-col,
.team-section-womens:has(.team-content-col:hover) .team-content-col {
    width: 55%;
}

/* ---- TEAM SLIDESHOW (shared) ---- */
.team-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 420px;
    overflow: hidden;
}

.team-slideshow img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    clip-path: inset(0 100% 0 0);
}

/* Men's slideshow timing */
.mens-team-section .team-slideshow img:nth-child(1) {
    animation: wipeSlideshow 25s infinite;
    animation-delay: 0s;
}
.mens-team-section .team-slideshow img:nth-child(2) {
    animation: wipeSlideshow 25s infinite;
    animation-delay: 5s;
}
.mens-team-section .team-slideshow img:nth-child(3) {
    animation: wipeSlideshow 25s infinite;
    animation-delay: 10s;
}
.mens-team-section .team-slideshow img:nth-child(4) {
    animation: wipeSlideshow 25s infinite;
    animation-delay: 15s;
}
.mens-team-section .team-slideshow img:nth-child(5) {
    animation: wipeSlideshow 25s infinite;
    animation-delay: 20s;
}

/* Women's slideshow timing (offset 2.5s so they're never in sync) */
.team-section-womens .team-slideshow img:nth-child(1) {
    animation: wipeSlideshow 25s infinite;
    animation-delay: 2.5s;
}
.team-section-womens .team-slideshow img:nth-child(2) {
    animation: wipeSlideshow 25s infinite;
    animation-delay: 7.5s;
}
.team-section-womens .team-slideshow img:nth-child(3) {
    animation: wipeSlideshow 25s infinite;
    animation-delay: 12.5s;
}
.team-section-womens .team-slideshow img:nth-child(4) {
    animation: wipeSlideshow 25s infinite;
    animation-delay: 17.5s;
}
.team-section-womens .team-slideshow img:nth-child(5) {
    animation: wipeSlideshow 25s infinite;
    animation-delay: 22.5s;
}

@keyframes wipeSlideshow {
    0%      { clip-path: inset(0 100% 0 0); opacity: 0; }
    2%      { opacity: 1; }
    4%      { clip-path: inset(0 0% 0 0); }
    20%     { clip-path: inset(0 0% 0 0); }
    22%     { clip-path: inset(0 0% 0 100%); opacity: 1; }
    24%     { opacity: 0; }
    100%    { opacity: 0; clip-path: inset(0 100% 0 0); }
}

.team-photo {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.team-content-col {
    width: 50%;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.team-heading-mens {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #22c55e, #0d9488);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.team-heading-womens {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ec4899, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.team-description {
    color: rgba(255,255,255,0.55);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 520px;
}

.team-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 8px;
}

.team-btn-outline {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.4);
    background: transparent;
    color: #fff;
    padding: 12px 28px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
    font-family: inherit;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    border-radius: 50px;
}

.team-btn-outline:hover {
    color: #fff;
}

.team-btn-outline .btn-wipe {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #ffffff;
    transform: none;
    transition: left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
}

.team-btn-outline:hover .btn-wipe {
    left: 0;
    transform: none;
}

.mens-team-section .team-btn-outline .btn-wipe {
    background: linear-gradient(135deg, #22c55e, #0d9488) !important;
}

.team-section-womens .team-btn-outline .btn-wipe {
    background: linear-gradient(135deg, #ec4899, #a855f7) !important;
}

.team-btn-outline .btn-text {
    position: relative;
    z-index: 1;
}

.team-btn-solid-mens {
    position: relative;
    overflow: hidden;
    border: none;
    background: linear-gradient(135deg, #22c55e, #0d9488);
    color: #fff;
    padding: 12px 28px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;
    border-radius: 50px;
}

.team-btn-solid-mens:hover {
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
}

.team-btn-solid-mens .btn-wipe {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    transform: none;
    transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
}

.team-btn-solid-mens:hover .btn-wipe {
    left: 0;
    transform: none;
}

.team-btn-solid-mens .btn-text {
    position: relative;
    z-index: 1;
}

.team-btn-solid-womens {
    position: relative;
    overflow: hidden;
    border: none;
    background: linear-gradient(135deg, #ec4899, #a855f7);
    color: #fff;
    padding: 12px 28px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;
    border-radius: 50px;
}

.team-btn-solid-womens:hover {
    box-shadow: 0 4px 20px rgba(236, 72, 153, 0.3);
}

.team-btn-solid-womens .btn-wipe {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f472b6, #ec4899);
    transform: none;
    transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 0;
}

.team-btn-solid-womens:hover .btn-wipe {
    left: 0;
    transform: none;
}

.team-btn-solid-womens .btn-text {
    position: relative;
    z-index: 1;
}

/* ---- TEAM SECTION: WOMEN'S TEAM ---- */
.team-section-womens {
    width: 100%;
    background: linear-gradient(135deg, #1a0a2e 0%, #4a1942 25%, #7c1d4a 50%, #9b1d4a 75%, #4a0e2e 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.team-section-womens::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../All Asset/assets/dropbck.png') center/cover no-repeat;
    opacity: 0.04;
    pointer-events: none;
}

.team-section-womens .team-row {
    flex-direction: row-reverse;
}


/* ========== MOBILE: TEAM SECTIONS STACK ========== */
@media (max-width: 768px) {
    .team-row {
        flex-direction: column !important;
        padding: 40px 20px;
        min-height: auto;
    }

    .team-image-col {
        width: 100% !important;
        flex: none;
    }

    .team-content-col {
        width: 100% !important;
        padding: 20px 0 0;
        gap: 16px;
    }

    .team-slideshow {
        min-height: 300px;
    }

    .team-slideshow img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .team-heading-mens,
    .team-heading-womens {
        font-size: 1.8rem !important;
    }

    .team-description {
        font-size: 0.95rem !important;
    }

    .team-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .team-btn-outline,
    .team-btn-solid-mens,
    .team-btn-solid-womens {
        width: 100%;
        justify-content: center;
    }

    .mens-team-section,
    .team-section-womens {
        padding: 10px 0;
    }

    /* Prevent hover width changes on mobile */
    .mens-team-section .team-image-col:hover,
    .team-section-womens .team-image-col:hover,
    .mens-team-section:hover .team-image-col,
    .team-section-womens:hover .team-image-col {
        width: 100% !important;
    }

    .mens-team-section .team-image-col:hover ~ .team-content-col,
    .team-section-womens .team-image-col:hover ~ .team-content-col,
    .mens-team-section:hover .team-content-col,
    .team-section-womens:hover .team-content-col {
        width: 100% !important;
    }

    .mens-team-section:has(.team-content-col:hover) .team-image-col,
    .team-section-womens:has(.team-content-col:hover) .team-image-col {
        width: 100% !important;
    }

    .mens-team-section:has(.team-content-col:hover) .team-content-col,
    .team-section-womens:has(.team-content-col:hover) .team-content-col {
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    .team-heading-mens,
    .team-heading-womens {
        font-size: 1.4rem !important;
    }

    .team-description {
        font-size: 0.9rem !important;
    }

    .team-slideshow {
        min-height: 220px;
    }
}
@media (max-width: 768px) {
    .team-row {
        flex-direction: column !important;
        min-height: auto;
        padding: 40px 20px;
    }
    .team-image-col, .team-content-col {
        width: 100%;
    }
    .team-content-col {
        padding: 30px 0 0;
    }
    .team-heading-mens, .team-heading-womens {
        font-size: 2.2rem;
    }
    .team-buttons {
        flex-direction: column;
    }
    .team-btn-outline, .team-btn-solid-mens, .team-btn-solid-womens {
        width: 100%;
        text-align: center;
    }
}

/* ---- SITE GALLERY SECTION ---- */
.site-gallery-section {
  width: 100%;
  padding: 100px 0;
  margin: 0;
  box-sizing: border-box;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(251, 191, 36, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(34, 197, 94, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(0, 0, 0, 0.3) 0%, transparent 70%),
    #0a0f1a;
  position: relative;
}

.site-gallery-section::before {
  display: none;
}

.site-gallery-heading {
  font-family: 'Saira', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 40%, #22c55e 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerTitle 4s ease-in-out infinite;
}

.site-gallery-heading::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #fbbf24, #22c55e);
  margin: 18px auto 0;
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
}

.site-gallery-desc {
  text-align: center;
  color: rgba(255,255,255,0.45);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 50px;
  font-weight: 300;
}

.site-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.site-gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  width: 100%;
}

.site-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.site-gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10, 15, 26, 0.95) 0%, rgba(10, 15, 26, 0.7) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  box-sizing: border-box;
  opacity: 0 !important;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.4s ease;
}

.site-gallery-content {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.3s ease 0.2s, transform 0.3s ease 0.2s;
  color: #ffffff;
  font-family: Arial, sans-serif;
  width: 100%;
}

.site-gallery-item:hover .site-gallery-overlay {
  opacity: 1 !important;
  visibility: visible;
}

.site-gallery-item:hover .site-gallery-content {
  opacity: 1;
  transform: translateY(0);
}

.site-gallery-title {
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 12px 0;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #fbbf24, #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.site-gallery-text {
  font-size: 14px;
  line-height: 1.5;
  color: #cccccc;
  margin: 0 0 20px 0;
}

.site-gallery-link {
  color: #22c55e;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.site-gallery-link:hover {
  color: #fbbf24;
}

.site-gallery-footer {
  text-align: center;
  padding: 40px 0 20px;
}

.site-gallery-viewmore {
  display: inline-block;
  padding: 14px 40px;
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.site-gallery-viewmore:hover {
  background: #22c55e;
  border-color: #22c55e;
  color: #0a0f1a;
}

.site-gallery-viewmore .btn-wipe {
    background: rgba(255,255,255,0.18);
}

@media (max-width: 900px) {
  .site-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .site-gallery-grid { grid-template-columns: 1fr; }
}

/* ========================================
   SECTION 4C: OFFICIAL PARTNERS STYLES
   ======================================== */
/* Footer reveal wrap */
#footer-reveal-wrap {
    position: relative;
    height: 100vh;
    z-index: 1;
    overflow: hidden;
    background: transparent;
}

#footer-panel {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, #050f0a 0%, #0a2e1f 20%, #064e3b 40%, #0d3b3a 60%, #0a0a0a 100%);
    color: white;
    overflow: hidden;
}

#footer-panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 8%;
    width: 84%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.22), transparent);
}

.partners-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: -10px;
    margin-bottom: 40px;
    font-family: 'Inter', sans-serif;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-top: 10px;
}

.partners-section .section-title {
    font-family: 'Saira', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 0 60px rgba(34, 197, 94, 0.2), 0 2px 10px rgba(0,0,0,0.3);
}

.partner-logo {
    width: 260px;
    height: 260px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 30px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.partner-logo img {
    max-width: 95%;
    max-height: 95%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    filter: brightness(0.9) saturate(0.8);
    transition: all 0.4s ease;
}

.partner-logo:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(34, 197, 94, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.partner-logo:hover img {
    filter: brightness(1.1) saturate(1);
}

/* ---- Partner Info Description ---- */
.partner-info {
    text-align: center;
    margin-top: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.partner-description {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 24px;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.partner-visit-link {
    position: relative;
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #22c55e;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 36px;
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 50px;
    background: transparent;
    z-index: 1;
    overflow: hidden;
    transition: color 0.4s ease, border-color 0.4s ease, transform 0.3s ease;
}

.partner-visit-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #ea580c, #f97316);
    z-index: -1;
    transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 50px;
}

.partner-visit-link:hover {
    color: #ffffff;
    border-color: #ea580c;
    transform: translateY(-2px);
}

.partner-visit-link:hover::before {
    left: 0;
}
/* ---- END SECTION 4C: OFFICIAL PARTNERS ---- */


/* ========================================
   SECTION 5: ACHIEVEMENTS / TROPHIES (MATURE)
   ======================================== */
.achievements-section {
    position: relative;
    padding: 120px 5%;
    overflow: hidden;
    background: linear-gradient(160deg, #1a0a2e 0%, #2d1b69 25%, #4a1a6b 50%, #2d1b69 75%, #1a0a2e 100%);
}

.achievements-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 100%, rgba(168, 85, 247, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 50%, rgba(236, 72, 153, 0.25) 0%, transparent 40%),
        radial-gradient(ellipse at 80% 50%, rgba(139, 92, 246, 0.25) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

/* Vector geometric background pattern */
.achievements-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(30deg, rgba(139, 92, 246, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(139, 92, 246, 0.03) 87.5%),
        linear-gradient(150deg, rgba(139, 92, 246, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(139, 92, 246, 0.03) 87.5%),
        linear-gradient(30deg, rgba(139, 92, 246, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(139, 92, 246, 0.03) 87.5%),
        linear-gradient(150deg, rgba(139, 92, 246, 0.03) 12%, transparent 12.5%, transparent 87%, rgba(139, 92, 246, 0.03) 87.5%),
        linear-gradient(60deg, rgba(168, 85, 247, 0.02) 25%, transparent 25.5%, transparent 75%, rgba(168, 85, 247, 0.02) 75%),
        linear-gradient(60deg, rgba(168, 85, 247, 0.02) 25%, transparent 25.5%, transparent 75%, rgba(168, 85, 247, 0.02) 75%);
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.5;
}

/* Floating geometric shapes */
.achievements-section .ach-geo-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.achievements-section .ach-geo {
    position: absolute;
    border: 1px solid rgba(139, 92, 246, 0.15);
    opacity: 0.4;
}

.achievements-section .ach-geo-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    top: -80px;
    right: -60px;
    border-width: 2px;
    animation: achFloat1 8s ease-in-out infinite;
}

.achievements-section .ach-geo-diamond {
    width: 120px;
    height: 120px;
    transform: rotate(45deg);
    bottom: 10%;
    left: 5%;
    border-color: rgba(236, 72, 153, 0.12);
    animation: achFloat2 10s ease-in-out infinite;
}

.achievements-section .ach-geo-triangle {
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 140px solid rgba(168, 85, 247, 0.06);
    top: 20%;
    right: 12%;
    border-top: none;
    animation: achFloat1 12s ease-in-out infinite;
}

.achievements-section .ach-geo-small-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    top: 40%;
    left: 8%;
    border-color: rgba(236, 72, 153, 0.1);
    animation: achFloat2 7s ease-in-out infinite reverse;
}

.achievements-section .ach-geo-line {
    width: 200px;
    height: 0;
    border-bottom: 1px solid rgba(139, 92, 246, 0.08);
    top: 60%;
    right: 5%;
    transform: rotate(-30deg);
}

.achievements-section .ach-geo-grid {
    width: 400px;
    height: 400px;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    border: none;
    background:
        linear-gradient(90deg, rgba(139, 92, 246, 0.04) 1px, transparent 1px),
        linear-gradient(0deg, rgba(139, 92, 246, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Glowing orbs */
.achievements-section .ach-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.achievements-section .ach-glow-orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(139, 92, 246, 0.12);
    top: -200px;
    left: -100px;
    animation: achPulse1 6s ease-in-out infinite;
}

.achievements-section .ach-glow-orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(236, 72, 153, 0.08);
    bottom: -150px;
    right: -100px;
    animation: achPulse2 8s ease-in-out infinite;
}

.achievements-section .ach-glow-orb-3 {
    width: 300px;
    height: 300px;
    background: rgba(168, 85, 247, 0.1);
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: achPulse1 10s ease-in-out infinite reverse;
}

/* Floating particles */
.achievements-section .ach-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.achievements-section .ach-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(168, 85, 247, 0.3);
    border-radius: 50%;
    animation: achFloat1 var(--dur, 6s) ease-in-out infinite;
}

.achievements-section .ach-particle:nth-child(1) { top: 15%; left: 10%; --dur: 5.5s; }
.achievements-section .ach-particle:nth-child(2) { top: 25%; right: 20%; --dur: 7s; }
.achievements-section .ach-particle:nth-child(3) { bottom: 30%; left: 25%; --dur: 6.2s; }
.achievements-section .ach-particle:nth-child(4) { top: 50%; right: 8%; --dur: 4.8s; }
.achievements-section .ach-particle:nth-child(5) { bottom: 15%; right: 35%; --dur: 8s; }
.achievements-section .ach-particle:nth-child(6) { top: 70%; left: 15%; --dur: 5.2s; }
.achievements-section .ach-particle:nth-child(7) { top: 10%; left: 50%; --dur: 6.8s; }
.achievements-section .ach-particle:nth-child(8) { bottom: 10%; left: 60%; --dur: 7.5s; }

@keyframes achFloat1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(3deg); }
}

@keyframes achFloat2 {
    0%, 100% { transform: translateY(0) rotate(45deg); }
    50% { transform: translateY(-15px) rotate(50deg); }
}

@keyframes achPulse1 {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

@keyframes achPulse2 {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.15); }
}

.achievements-section .section-title {
    font-family: 'Saira', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 0 60px rgba(255, 255, 255, 0.3), 0 2px 10px rgba(0,0,0,0.3);
}

/* ---- MATURE ACHIEVEMENTS GRID ---- */
.achievements-grid-modern {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.achievement-card-modern {
    position: relative;
    border-radius: 16px;
    padding: 32px 18px 28px;
    text-align: center;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    min-height: 290px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    isolation: isolate;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.achievement-card-modern::before {
    display: none;
}

.achievement-card-modern::after {
    display: none;
}

.ach-1 {
    border-color: rgba(251, 191, 36, 0.25);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06), inset 0 0 60px rgba(251, 191, 36, 0.04);
}
.ach-1 .ach-year { color: rgba(180, 130, 0, 0.6); }
.ach-1 .ach-medal-text { color: rgba(180, 130, 0, 0.7); letter-spacing: 3px; }

.ach-2 {
    border-color: rgba(100, 110, 120, 0.2);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06), inset 0 0 60px rgba(100, 110, 120, 0.03);
}
.ach-2 .ach-year { color: rgba(80, 90, 100, 0.5); }
.ach-2 .ach-medal-text { color: rgba(80, 90, 100, 0.6); letter-spacing: 3px; }

.ach-3 {
    border-color: rgba(251, 191, 36, 0.25);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06), inset 0 0 60px rgba(251, 191, 36, 0.04);
}
.ach-3 .ach-year { color: rgba(180, 130, 0, 0.6); }
.ach-3 .ach-medal-text { color: rgba(180, 130, 0, 0.7); letter-spacing: 3px; }

.ach-4 {
    border-color: rgba(251, 191, 36, 0.25);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06), inset 0 0 60px rgba(251, 191, 36, 0.04);
}
.ach-4 .ach-year { color: rgba(180, 130, 0, 0.6); }
.ach-4 .ach-medal-text { color: rgba(180, 130, 0, 0.7); letter-spacing: 3px; }

.ach-5 {
    border-color: rgba(251, 136, 56, 0.2);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06), inset 0 0 60px rgba(251, 136, 56, 0.03);
}
.ach-5 .ach-year { color: rgba(200, 90, 20, 0.5); }
.ach-5 .ach-medal-text { color: rgba(200, 90, 20, 0.6); letter-spacing: 3px; }

.ach-bg-glow {
    display: none;
}

.achievement-card-modern:hover {
    transform: translateY(-4px);
    border-color: rgba(0,0,0,0.12);
    box-shadow: 0 12px 48px rgba(0,0,0,0.1);
}

.ach-trophy-wrap {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.ach-trophy-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ach-trophy-svg {
    width: 100%;
    height: 100%;
}

.ach-trophy-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.achievement-card-modern:hover .ach-trophy-icon {
    transform: scale(1.08);
}

.ach-content {
    position: relative;
    z-index: 2;
}

.ach-year {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.ach-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.ach-divider {
    width: 24px;
    height: 1px;
    margin: 10px auto 10px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.08), transparent);
}

.ach-medal {
    display: inline-block;
}

.ach-medal-icon {
    display: none;
}

.ach-medal-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0.7;
}

.ach-orb {
    display: none;
}

/* Trophy accent lines per card */
.achievement-card-modern .ach-trophy-wrap::after {
    display: none;
}

@media (max-width: 1200px) {
    .achievements-grid-modern {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .achievements-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .achievement-card-modern {
        padding: 24px 14px 22px;
        min-height: 250px;
    }
    .ach-title {
        font-size: 0.95rem;
    }
}

@media (max-width: 600px) {
    .achievements-grid-modern {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding: 0 5% 16px;
        width: 100%;
        scrollbar-width: none;
    }
    .achievements-grid-modern::-webkit-scrollbar { display: none; }
    .achievement-card-modern {
        flex: 0 0 60vw;
        min-height: 300px;
        padding: 28px 16px 24px;
        scroll-snap-align: start;
        background: #fff;
        border-color: rgba(0,0,0,0.08);
        box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    }
    .achievement-card-modern::before {
        display: none;
    }
    .achievement-card-modern:last-child {
        margin-right: 5vw;
    }
    .achievement-card-modern .ach-title {
        font-size: 0.85rem;
        color: #1a1a2e;
    }
    .achievement-card-modern .ach-year {
        font-size: 0.7rem;
        color: rgba(0,0,0,0.35) !important;
    }
    .achievement-card-modern .ach-medal-text {
        font-size: 0.7rem;
        color: rgba(0,0,0,0.5) !important;
    }
    .achievement-card-modern .ach-divider {
        background: linear-gradient(90deg, transparent, rgba(0,0,0,0.08), transparent);
    }
    .ach-trophy-icon {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 400px) {
    .achievement-card-modern {
        flex: 0 0 68vw;
        min-height: 280px;
        padding: 24px 14px 20px;
    }
    .achievement-card-modern .ach-title {
        font-size: 0.8rem;
    }
    .achievement-card-modern .ach-year {
        font-size: 0.65rem;
    }
    .achievement-card-modern .ach-medal-text {
        font-size: 0.65rem;
    }
    .ach-trophy-icon {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 360px) {
    .achievement-card-modern {
        flex: 0 0 75vw;
        min-height: 260px;
        padding: 20px 12px 18px;
    }
    .achievement-card-modern .ach-title {
        font-size: 0.75rem;
    }
    .achievement-card-modern .ach-year {
        font-size: 0.6rem;
    }
    .achievement-card-modern .ach-medal-text {
        font-size: 0.6rem;
    }
    .ach-trophy-icon {
        width: 42px;
        height: 42px;
    }
}

/* Gallery Button - Ultra */
.btn-gallery-ultra {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 40px auto 0;
    padding: 16px 40px;
    border: none;
    border-radius: 60px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    background: rgba(34,197,94,0.08);
    border: 1px solid rgba(34,197,94,0.25);
    color: #22c55e;
    transition: all 0.4s ease;
    font-family: inherit;
    letter-spacing: 0.5px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 24px rgba(34,197,94,0.06), inset 0 1px 0 rgba(255,255,255,0.06);
    text-decoration: none;
}

.gallery-btn-wrapper {
    text-align: center;
    position: relative;
    z-index: 1;
}

.btn-gallery-text {
    position: relative;
    z-index: 2;
}

.btn-gallery-icon {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
    display: inline-flex;
}

.btn-gallery-ultra:hover .btn-gallery-icon {
    transform: translateX(4px);
}

.btn-gallery-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(34,197,94,0.12), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-gallery-ultra:hover .btn-gallery-shimmer {
    transform: translateX(100%);
}

.btn-gallery-ultra:hover {
    background: rgba(34,197,94,0.14);
    border-color: rgba(34,197,94,0.4);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(34,197,94,0.15), inset 0 1px 0 rgba(255,255,255,0.08);
}

.btn-gallery-ultra.btn-gallery-red {
    background: rgba(239,68,68,0.08);
    border-color: rgba(239,68,68,0.25);
    color: #ef4444;
    box-shadow: 0 4px 24px rgba(239,68,68,0.06), inset 0 1px 0 rgba(255,255,255,0.06);
}
.btn-gallery-ultra.btn-gallery-red:hover {
    background: rgba(239,68,68,0.14);
    border-color: rgba(239,68,68,0.4);
    box-shadow: 0 12px 40px rgba(239,68,68,0.15), inset 0 1px 0 rgba(255,255,255,0.08);
}
.btn-gallery-ultra.btn-gallery-red .btn-gallery-shimmer {
    background: linear-gradient(90deg, transparent, rgba(239,68,68,0.12), transparent);
}

.btn-gallery-ultra.btn-gallery-blue {
    background: rgba(59,130,246,0.08);
    border-color: rgba(59,130,246,0.25);
    color: #60a5fa;
    box-shadow: 0 4px 24px rgba(59,130,246,0.06), inset 0 1px 0 rgba(255,255,255,0.06);
}
.btn-gallery-ultra.btn-gallery-blue:hover {
    background: rgba(59,130,246,0.14);
    border-color: rgba(59,130,246,0.4);
    box-shadow: 0 12px 40px rgba(59,130,246,0.15), inset 0 1px 0 rgba(255,255,255,0.08);
}
.btn-gallery-ultra.btn-gallery-blue .btn-gallery-shimmer {
    background: linear-gradient(90deg, transparent, rgba(59,130,246,0.12), transparent);
}
/* ---- END SECTION 5: ACHIEVEMENTS ---- */


/* ========================================
   SECTION 6: NEWS STYLES (Windows 10 Tiles)
   ======================================== */
/* ---- NEWS GRID SECTION ---- */
.news-grid-section {
    padding: 120px 5%;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(34, 197, 94, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 70%, rgba(13, 148, 136, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 0%, rgba(34, 197, 94, 0.06) 0%, transparent 45%),
        #0a0f1a;
    position: relative;
}

.news-grid-section .section-title {
    font-family: 'Saira', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #22c55e 0%, #0d9488 50%, #22c55e 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmerTitle 4s ease-in-out infinite;
    position: relative;
}

@keyframes shimmerTitle {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.news-grid-section .section-desc {
    text-align: center;
    color: rgba(255,255,255,0.45);
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 60px;
    font-weight: 300;
}

.news-grid-section .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #22c55e, #0d9488);
    margin: 18px auto 0;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.news-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
                box-shadow 0.4s ease,
                border-color 0.4s ease,
                background 0.4s ease;
    backdrop-filter: blur(2px);
}

.news-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(34, 197, 94, 0.2),
                0 0 40px rgba(34, 197, 94, 0.05);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(34, 197, 94, 0.3);
}

.news-card:hover .card-title {
    background: linear-gradient(135deg, #4ade80, #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.news-card:hover .card-text {
    color: rgba(255, 255, 255, 0.8);
}

.news-card:hover .card-footer {
    color: rgba(34, 197, 94, 0.8);
    border-top-color: rgba(34, 197, 94, 0.2);
}

.news-card:hover .image-container img {
    transform: scale(1.08);
}

.news-card:hover .image-container::after {
    opacity: 1;
}

.news-card .image-container {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    flex-shrink: 0;
}

.news-card .image-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 15, 26, 0.6) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.news-card .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.badge {
    position: absolute;
    top: 14px;
    left: 14px;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    padding: 6px 14px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border-radius: 100px;
    z-index: 2;
}

.badge-highlights {
    background: linear-gradient(135deg, #ff3344, #ff0055);
    box-shadow: 0 4px 15px rgba(255, 51, 68, 0.3);
}

.badge-interviews {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.card-content {
    padding: 24px 24px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-size: 17px;
    font-weight: 800;
    line-height: 1.35;
    color: #ffffff;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.card-text {
    font-size: 13.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 20px 0;
    flex-grow: 1;
    transition: color 0.3s ease;
}

.card-footer {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 14px;
    transition: color 0.3s ease, border-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-footer::before {
    content: '\f017';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 10px;
    opacity: 0.5;
}

.news-btn-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 40px;
    background: #fff;
    color: #111;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid #fff;
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.news-btn-more:hover {
    background: #dc2626;
    border-color: #dc2626;
    color: #fff;
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.3);
}

/* News Modal - Card Popup Style */
.news-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow-y: auto;
    z-index: 99999;
    display: none;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
}

.news-modal.active {
    display: flex;
}

.news-card-popup {
    background: #0d1117;
    border: 1px solid rgba(34, 197, 94, 0.15);
    max-width: 720px;
    width: 90%;
    margin: 40px auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 60px rgba(34, 197, 94, 0.08);
    animation: modalSlideIn 0.3s ease;
    position: relative;
}

.popup-image-wrap {
    position: relative;
    width: 100%;
    max-height: 400px;
    overflow: hidden;
}

.popup-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.popup-image-wrap .badge {
    position: absolute;
    top: 15px;
    left: 15px;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    letter-spacing: 0.5px;
    border-radius: 100px;
    z-index: 2;
}

.popup-body {
    padding: 32px;
}

.popup-date {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    display: block;
    margin-bottom: 12px;
}

.popup-date::before {
    content: '\f017';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    margin-right: 6px;
    opacity: 0.5;
}

.popup-title {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 16px 0;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.popup-highlight {
    font-size: 16px;
    background: linear-gradient(135deg, #4ade80, #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
    margin: 0 0 20px 0;
    line-height: 1.5;
    font-weight: 600;
}

.popup-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin: 0;
    white-space: pre-line;
}

.modal-close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 50%;
    color: #22c55e;
    font-size: 24px;
    cursor: pointer;
    z-index: 100001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #22c55e;
    color: #0a0f1a;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}

.modal-close:hover {
    background: rgba(0,0,0,0.7);
}

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


/* News Modal - Full Screen Read Mode */
.news-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #0a0a0a;
    overflow-y: auto;
    z-index: 99999;
    display: none;
    padding: 0;
}

.news-modal::before {
    display: none;
}

.news-modal.active {
    display: block;
}

body.news-modal-open {
    overflow: hidden;
}

.news-modal-content {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    color: white;
    z-index: 1;
    padding: 100px 40px;
    animation: modalSlideIn 0.4s ease;
}

.modal-close {
    position: fixed;
    top: 20px;
    right: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 1002;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.news-modal .modal-image {
    width: 100%;
    height: auto;
    border-radius: 0;
    margin-bottom: 30px;
    max-height: 500px;
    object-fit: cover;
}

.news-modal .modal-date {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 10px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
}

.news-modal .modal-title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 10px;
    line-height: 1.2;
    font-weight: 700;
}

.news-modal .modal-highlight {
    color: #86efac;
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-style: italic;
}

.news-modal .modal-text {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.9;
    font-size: 1.1rem;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ---- END SECTION 6: NEWS ---- */


/* ========================================
   SECTION 7: FOOTER STYLES
   ======================================== */
/* ========================================
   SECTION 7: FOOTER
   ======================================== */
.footer {
    position: relative;
    background: linear-gradient(160deg, #050f0a 0%, #0a2e1f 20%, #064e3b 40%, #0d3b3a 60%, #0a0a0a 100%);
    color: white;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 80%, rgba(34,197,94,0.06) 0%, transparent 50%),
                radial-gradient(circle at 70% 20%, rgba(34,197,94,0.04) 0%, transparent 50%);
    pointer-events: none;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, #22c55e, #0d9488, #22c55e, transparent);
    opacity: 0.6;
}



.footer-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 5% 0;
    position: relative;
    z-index: 1;
}

/* Top brand strip */
.footer-brand-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(34,197,94,0.12);
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-brand-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(34,197,94,0.3));
}

.footer-brand-text h3 {
    font-family: 'Saira', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.2;
}

.footer-brand-text p {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 2px;
}

.footer-social-row {
    display: flex;
    gap: 12px;
}

.footer-social-row a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(34,197,94,0.08);
    border: 1px solid rgba(34,197,94,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-row a:hover {
    background: #22c55e;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(34,197,94,0.25);
    border-color: #22c55e;
}

.social-icon {
    width: 20px;
    height: 20px;
    display: block;
}

/* Main grid */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    padding: 50px 0;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 550px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-brand-strip {
        flex-direction: column;
        text-align: center;
    }
}

.footer-col h4 {
    font-family: 'Saira', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #22c55e;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 14px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #22c55e, transparent);
    border-radius: 2px;
}

.footer-col.about-col p {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.8;
    color: rgba(255,255,255,0.55);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a:hover {
    color: #22c55e;
    transform: translateX(4px);
}

.footer-col ul li a i {
    font-size: 0.6rem;
    color: #22c55e;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.footer-col ul li a:hover i {
    opacity: 1;
}

/* Contact info */
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.footer-contact-item .icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 10px;
    background: rgba(34,197,94,0.08);
    border: 1px solid rgba(34,197,94,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22c55e;
    font-size: 0.85rem;
}

.footer-contact-item .text {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.55);
    line-height: 1.5;
}

.footer-contact-item .text strong {
    display: block;
    color: rgba(255,255,255,0.85);
    font-weight: 800;
    margin-bottom: 2px;
}

/* Newsletter */
.footer-newsletter p {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
    margin-bottom: 18px;
}

.footer-newsletter-form {
    display: flex;
    gap: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(34,197,94,0.15);
    background: rgba(34,197,94,0.04);
}

.footer-newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    border: none;
    background: transparent;
    color: #fff;
    font-family: inherit;
    font-size: 0.85rem;
    outline: none;
}

.footer-newsletter-form input::placeholder {
    color: rgba(255,255,255,0.25);
}

.footer-newsletter-form button {
    padding: 14px 22px;
    border: none;
    background: linear-gradient(135deg, #22c55e, #0d9488);
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: opacity 0.3s;
    font-family: inherit;
    white-space: nowrap;
}

.footer-newsletter-form button:hover {
    opacity: 0.9;
}

/* Bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(34,197,94,0.08);
    padding: 24px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255,255,255,0.3);
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: #22c55e;
}

@media (max-width: 550px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-inner {
        padding: 50px 5% 0;
    }
}
/* ---- END SECTION 7: FOOTER ---- */
   SECTION 2C: UPCOMING MATCH BANNER
   ======================================== */
.match-banner-section {
    background: radial-gradient(ellipse at 50% 0%, rgba(34,197,94,0.18) 0%, transparent 60%),
                radial-gradient(ellipse at 50% 100%, rgba(34,197,94,0.12) 0%, transparent 50%),
                linear-gradient(180deg, #0f0f1a 0%, #0a0a0a 50%, #0f0f1a 100%);
    border-top: 1px solid rgba(34,197,94,0.25);
    border-bottom: 1px solid rgba(34,197,94,0.25);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 152px 0;
}

.match-banner-section::before {
    display: none;
}

.match-banner-section::after {
    display: none;
}

.banner-toggle {
    display: flex;
    margin-bottom: 15px;
    align-self: center;
}
.banner-toggle-btn {
    padding: 10px 28px;
    border: 2px solid rgba(255,255,255,0.2);
    background: transparent;
    color: rgba(255,255,255,0.6);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.banner-toggle-btn.active {
    background: #22c55e;
    color: white;
    border-color: #22c55e;
    box-shadow: 0 0 12px rgba(34,197,94,0.4);
    transform: scale(1.05);
}
.banner-toggle-btn:first-child { border-radius: 4px 0 0 4px; }
.banner-toggle-btn:last-child { border-radius: 0 4px 4px 0; }

.banner-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
    background: transparent;
}

.match-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 50px 0;
    position: relative;
    z-index: 1;
}

.banner-title-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-transform: uppercase;
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: 2px;
}

.banner-title-white {
    color: #ffffff;
    font-size: 5rem;
    font-family: 'Saira', sans-serif;
}

.banner-title-neon {
    color: #22c55e;
    font-size: 6rem;
    font-family: 'Saira', sans-serif;
}

.banner-title-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 5px;
}

.banner-ball-icon {
    width: 50px;
    height: 50px;
    background: radial-gradient(circle at 35% 35%, #ffffff, #cccccc 60%, #999999);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255,255,255,0.3), inset 0 -3px 6px rgba(0,0,0,0.2);
    position: relative;
}

.banner-ball-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 85%;
    border: 2px solid rgba(0,0,0,0.15);
    border-radius: 50%;
}

.banner-matchup-block {
    flex: 1.3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.banner-vs-box {
    border: 2px solid #ffcc00;
    padding: 30px 40px;
    position: relative;
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    max-width: 550px;
}

.banner-vs-box::before,
.banner-vs-box::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: #ffcc00;
}
.banner-vs-box::before { top: -6px; left: -6px; }
.banner-vs-box::after { bottom: -6px; right: -6px; }

.banner-teams-row {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
}

.banner-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.banner-logo-slot {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: inset 0 0 15px rgba(0,0,0,0.5);
}

.banner-team-a .banner-logo-slot { background: rgba(255,255,255,0.1); }
.banner-team-b .banner-logo-slot { background: rgba(255,255,255,0.1); }

.banner-team-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    text-align: center;
}

.banner-vs-text {
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffcc00;
    font-style: italic;
    text-shadow: 0 0 10px rgba(255,204,0,0.5);
    font-family: 'Saira', sans-serif;
}

.banner-schedule-info {
    font-size: 0.9rem;
    color: #ffffff;
    letter-spacing: 2px;
    text-align: center;
    font-weight: 700;
    margin-top: 20px;
    font-family: 'Saira', sans-serif;
}

.banner-countdown {
    display: flex;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 15px 30px;
    border-radius: 12px;
    gap: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.1);
}

.banner-count-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.banner-count-num {
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
}

.banner-count-label {
    font-size: 0.55rem;
    color: #888888;
    letter-spacing: 1px;
    margin-top: 4px;
    font-weight: 700;
}

.banner-count-divider {
    color: rgba(255,255,255,0.2);
    font-size: 1.8rem;
    align-self: center;
    font-weight: 100;
}

/* Scroll Trigger Animation */
.scroll-trigger {
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.scroll-trigger.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.delay-1 { transition-delay: 0.05s; }
.delay-2 { transition-delay: 0.15s; }
.delay-3 { transition-delay: 0.25s; }

/* Responsive Match Banner */
@media (max-width: 900px) {
    .match-banner-section {
        padding: 100px 0;
    }
    .match-banner-inner {
        flex-direction: column;
        text-align: center;
        padding: 35px 0;
    }
    .banner-title-row { justify-content: center; }
    .banner-title-white,
    .banner-title-neon { font-size: 3rem; }
    .banner-title-neon { font-size: 3rem; }
    .banner-vs-box { padding: 20px; }
    .banner-countdown { padding: 12px 15px; gap: 10px; }
    .banner-count-block { min-width: 45px; }
    .banner-count-num { font-size: 1.4rem; }
    .banner-logo-slot { width: 50px; height: 50px; font-size: 1.2rem; }
    .banner-vs-text { font-size: 1.6rem; }
    .banner-toggle-btn { padding: 8px 20px; font-size: 0.75rem; }
    .banner-matchup-block { gap: 20px; }
}

/* ========================================


/* ========================================
   SCROLL ANIMATIONS
   ======================================== */

/* Base scroll animation class */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Animation states */
.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Fade In Up Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade In Left Animation */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Fade In Right Animation */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scale In Animation */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Bounce In Animation */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Flip Animation */
@keyframes flipIn {
    from {
        opacity: 0;
        transform: perspective(400px) rotateX(90deg);
    }
    to {
        opacity: 1;
        transform: perspective(400px) rotateX(0);
    }
}

/* Float Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Pulse Glow */
@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(34, 197, 94, 0.6);
    }
}

/* Rotate In */
@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.9);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

/* Staggered Animation Classes */
.stagger-1 { animation-delay: 0.05s; }
.stagger-2 { animation-delay: 0.1s; }
.stagger-3 { animation-delay: 0.15s; }
.stagger-4 { animation-delay: 0.2s; }
.stagger-5 { animation-delay: 0.25s; }

/* Apply animations on scroll */
.section {
    position: relative;
    overflow: visible;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05), rgba(255, 255, 255, 0));
    opacity: 0.6;
    pointer-events: none;
}

.section.animate-in::before {
    opacity: 1;
}

/* Card hover effects */
.match-card, .achievement-card, .news-card, .partner-logo, .team-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.match-card:hover, .achievement-card:hover, .news-card:hover, .partner-logo:hover, .team-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Floating animation for certain elements */
.floating {
    animation: float 3s ease-in-out infinite;
}

/* Banner text animation */
.banner-text {
    animation: fadeInLeft 0.5s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

/* Watch Live button special animation */
.btn-watch-live {
    animation: pulseGlow 2s ease-in-out infinite, fadeInUp 0.4s ease forwards;
    animation-delay: 0.8s, 0.5s;
    opacity: 0;
}

/* Header animation */
.header {
    transition: transform 0.4s ease, all 0.3s ease, padding 0.3s ease;
}

/* League table pop in */
.league-table {
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.league-table.animate-in {
    animation: scaleIn 0.4s ease forwards;
}

/* Match center cards */
.match-center .match-card {
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.match-center .match-card:hover {
    transform: translateY(-25px) scale(1.08);
    box-shadow: 0 30px 60px rgba(236, 72, 153, 0.6), 0 0 40px rgba(236, 72, 153, 0.4);
}

.match-center .match-card.animate-in {
    animation: bounceIn 0.4s ease forwards;
}

/* News cards with rotation */
.news-grid-section .news-card {
    transform-origin: center bottom;
}

.news-grid-section .news-card.animate-in {
    animation: flipIn 0.4s ease forwards;
}

/* Partner logos */
.partner-logo.animate-in {
    animation: rotateIn 0.3s ease forwards;
}

/* Team cards */
.team-card.animate-in {
    animation: fadeInUp 0.4s ease forwards;
}

.team-card:nth-child(1).animate-in { animation-delay: 0.05s; }
.team-card:nth-child(2).animate-in { animation-delay: 0.15s; }

/* Gallery button */
.btn-gallery {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-gallery.animate-in {
    animation: bounceIn 0.8s ease forwards;
    animation-delay: 0.5s;
}

/* Results section */
.results-section .league-table {
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.results-section .fixtures-card {
    transition: transform 0.8s ease, opacity 0.8s ease;
    animation-delay: 0.2s;
}

/* Partners section */
.partners-section .partner-logo {
    transition: all 0.5s ease;
}

.partners-section .partner-logo:nth-child(1) { transition-delay: 0.1s; }
.partners-section .partner-logo:nth-child(2) { transition-delay: 0.2s; }
.partners-section .partner-logo:nth-child(3) { transition-delay: 0.3s; }

/* Footer animation */
.footer {
    transition: opacity 0.8s ease;
}

.footer.animate-in {
    animation: fadeInUp 0.8s ease forwards;
}

/* Scroll indicator */
.scroll-indicator {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #14532d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 999;
}

.scroll-indicator.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-indicator:hover {
    background: #22c55e;
    transform: scale(1.1);
}

.scroll-indicator i {
    color: white;
    font-size: 20px;
}

/* Match Detail Modal */
.match-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../All Asset/assets/bkg2.jpg') center/cover no-repeat;
    z-index: 9999;
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

.match-modal::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(5, 30, 15, 0.97);
    z-index: -1;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 40px auto;
    padding: 40px;
    background: url('../All Asset/assets/bkg2.jpg') center/cover no-repeat, rgba(5, 30, 15, 0.95);
    border-radius: 20px;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
    background: none;
    border: none;
    transition: transform 0.3s ease;
}

.modal-close:hover {
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-league {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.modal-league img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.modal-league-text {
    color: #86efac;
    font-size: 1rem;
    font-weight: 600;
}

.modal-date {
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.live-btn {
    background: #dc2626;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 800;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

.modal-teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
}

.modal-team {
    text-align: center;
    flex: 1;
}

.modal-team img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    background: white;
    border-radius: 50%;
    padding: 10px;
    margin-bottom: 10px;
}

.modal-team-name {
    color: white;
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
}

.modal-team-city {
    color: #86efac;
    font-size: 0.9rem;
    margin-top: 5px;
}

.modal-vs {
    color: #fbbf24;
    font-size: 2rem;
    font-weight: 900;
}

.modal-match-info {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    padding: 25px;
    margin: 25px 0;
}

.modal-venue-info h3,
.modal-host-info h3,
.modal-away-info h3 {
    color: #fbbf24;
    font-size: 1.1rem;
    margin-bottom: 10px;
    border-bottom: 2px solid #fbbf24;
    padding-bottom: 5px;
}

.modal-venue-info p,
.modal-host-info p,
.modal-away-info p {
    color: white;
    line-height: 1.8;
    font-size: 0.95rem;
}

.modal-stadium {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    margin-bottom: 15px;
}

.modal-stadium-icon {
    font-size: 1.5rem;
}

.modal-sections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.modal-host-info,
.modal-away-info {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .modal-teams {
        flex-direction: column;
        gap: 20px;
    }
    
    .modal-sections {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        margin: 20px;
        padding: 25px;
    }
}

/* ========================================
   FLOAT IN ANIMATIONS FOR MATCH CARDS
   ======================================== */
@keyframes floatInWave {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.9);
    }
    50% {
        opacity: 1;
        transform: translateY(-5px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

@keyframes floatInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Match card float-in animation base */
.match-card {
    animation: none;
    opacity: 1;
}

.match-card.float-in {
    animation: floatInUp 0.5s ease-out forwards;
}

.match-card.float-in-scale {
    animation: floatInScale 0.4s ease-out forwards;
}

.match-card.float-in-bounce {
    animation: floatInWave 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Stagger delays for swift wave effect */
.match-card.float-delay-0 { animation-delay: 0s; }
.match-card.float-delay-1 { animation-delay: 0.1s; }
.match-card.float-delay-2 { animation-delay: 0.2s; }
.match-card.float-delay-3 { animation-delay: 0.3s; }
.match-card.float-delay-4 { animation-delay: 0.4s; }
.match-card.float-delay-5 { animation-delay: 0.5s; }
.match-card.float-delay-6 { animation-delay: 0.6s; }
.match-card.float-delay-7 { animation-delay: 0.7s; }
.match-card.float-delay-8 { animation-delay: 0.8s; }

/* Hide cards during animation reset */
.match-card.animating-out {
    animation: fadeOutDown 0.15s ease-out forwards;
}

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

/* ========================================
   ROSTER MODAL STYLES (WOMEN)
   ======================================== */
.roster-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../All Asset/assets/dropbck.png') center/cover no-repeat;
    z-index: 10000;
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

.roster-modal.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.roster-modal-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px 40px;
    position: relative;
}

.roster-close-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    color: white;
    font-size: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10001;
}

.roster-close-btn:hover {
    background: white;
    color: #034694;
}

.roster-title {
    font-size: 60px;
    font-weight: 900;
    text-transform: uppercase;
    color: white;
    margin: 0 0 40px 0;
    text-align: center;
    letter-spacing: -2px;
}

.roster-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    border-bottom: 3px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 40px;
}

.roster-tab-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    border-bottom: 5px solid transparent;
}

.roster-tab-btn:hover {
    color: white;
}

.roster-tab-btn.active {
    color: white;
    border-bottom: 5px solid #DBA111;
}

.roster-container {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.roster-container.active {
    display: grid;
}

.roster-card {
    background-color: rgba(255, 255, 255, 0.15);

    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    aspect-ratio: 1 / 1.2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 12px;
}

.roster-card:hover {
    background-color: rgba(50, 205, 50, 0.4);
    transform: translateY(-5px);
}

.roster-number {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 60px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.9);
    z-index: 10;
    line-height: 1;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.roster-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 5;
    position: absolute;
    top: 0;
    left: 0;
}

.roster-name {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    z-index: 15;
}

/* Team Card Submenu */
.team-submenu {
    display: none;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
}

.female-team-btn:hover .team-submenu,
.male-team-btn:hover .team-submenu {
    display: flex;
}

.submenu-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.submenu-players:hover {
    background: #22c55e;
    color: white;
    border-color: #22c55e;
    box-shadow: 0 5px 20px rgba(34, 197, 94, 0.4);
}

.submenu-staff:hover {
    background: white;
    color: #0a0a0a;
    border-color: white;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

/* ========================================
   MEN'S ROSTER MODAL STYLES
   ======================================== */
#menRosterModal {
    background: url('../All Asset/assets/dropbck.png') center/cover no-repeat;
}

#menRosterModal .roster-card {
    background-color: white;
    border: none;
    aspect-ratio: 4 / 5;
    border-radius: 0;
}

#menRosterModal .roster-card:hover {
    background-color: #22c55e;
}

#menRosterModal .roster-card:hover .roster-number {
    color: white;
}

#menRosterModal .roster-card:hover .roster-name {
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
}

#menRosterModal .roster-number {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

#menRosterModal .roster-name {
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    left: 0;
    right: 0;
    text-align: center;
    bottom: 0;
}

#menRosterModal .roster-tab-btn.active {
    border-bottom-color: #fecb00;
}

#menRosterModal .roster-tabs-nav {
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

#menRosterModal .roster-close-btn:hover {
    color: #001489;
}

.roster-modal.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.roster-modal-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px 40px;
    position: relative;
}

.roster-close-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    color: white;
    font-size: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10001;
}

.roster-close-btn:hover {
    background: white;
    color: #034694;
}

.roster-title {
    font-size: 60px;
    font-weight: 900;
    text-transform: uppercase;
    color: white;
    margin: 0 0 40px 0;
    text-align: center;
    letter-spacing: -2px;
}

.roster-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    border-bottom: 3px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 40px;
}

.roster-tab-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    border-bottom: 5px solid transparent;
}

.roster-tab-btn:hover {
    color: white;
}

.roster-tab-btn.active {
    color: white;
    border-bottom: 5px solid #DBA111;
}

.roster-container {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.roster-container.active {
    display: grid;
}

.roster-card {
    background-color: rgba(255, 255, 255, 0.15);

    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    aspect-ratio: 1 / 1.2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 12px;
}

.roster-card:hover {
    background-color: rgba(50, 205, 50, 0.4);
    transform: translateY(-5px);
}

.roster-number {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 60px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.9);
    z-index: 10;
    line-height: 1;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.roster-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 5;
    position: absolute;
    top: 0;
    left: 0;
}

.roster-name {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    z-index: 15;
}

/* Team Card Submenu */
.team-submenu {
    display: none;
    flex-direction: column;
    gap: 5px;
    margin-top: 10px;
}

.female-team-btn:hover .team-submenu {
    display: flex;
}

.submenu-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.3s;
}

.submenu-item:hover {
    background: #DBA111;
    color: #034694;
}

@media (max-width: 768px) {
    .roster-title {
        font-size: 35px;
    }
    
    .roster-tabs-nav {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .roster-container {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
    
    #menRosterModal .roster-container {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    #menRosterModal .roster-number {
        font-size: 40px;
    }
}

/* ========================================
   SCROLL ANIMATION STYLES
   ======================================== */
.scroll-animate {
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-animate.animate-in {
    opacity: 1;
    transform: scale(1);
}

@keyframes subtleFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes subtleSway {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    50% {
        transform: translateX(5px) translateY(-8px);
    }
}

@keyframes subtleScale {
    0%, 100% {
        transform: scale(1) translateY(0);
    }
    50% {
        transform: scale(1.02) translateY(-8px);
    }
}

/* Zoom In Animation */
@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes zoomInUp {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(100px);
    }
    60% {
        opacity: 1;
        transform: scale(1.02) translateY(-10px);
    }
    100% {
        transform: scale(1) translateY(0);
    }
}

@keyframes zoomInLeft {
    0% {
        opacity: 0;
        transform: scale(0.5) translateX(-100px);
    }
    60% {
        opacity: 1;
        transform: scale(1.02) translateX(10px);
    }
    100% {
        transform: scale(1) translateX(0);
    }
}

/* Teams Section - Zoom In Animation */
.teams-section.animate-in {
    animation: slideInUp 0.5s ease forwards, floatGently 4s ease-in-out 1s infinite;
}

.teams-section.animate-in .teams-grid-modern {
    animation: zoomIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.15s forwards;
    opacity: 0;
}

.teams-section.animate-in .team-card-modern {
    opacity: 0;
    transform: scale(0.8);
    animation: zoomIn 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.teams-section.animate-in .team-card-modern:nth-child(1) {
    animation-delay: 0.25s;
}

/* Achievements Section - Zoom In Animation */
.achievements-section.animate-in {
    animation: slideInUp 0.5s ease forwards, scaleFloat 4s ease-in-out 1s infinite;
}

.achievements-section.animate-in .achievements-grid-modern {
    animation: zoomIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.15s forwards;
    opacity: 0;
}

.achievements-section.animate-in .achievement-card-modern {
    opacity: 0;
    transform: scale(0.5);
    animation: zoomIn 0.25s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.achievements-section.animate-in .achievement-card-modern:nth-child(1) { animation-delay: 0.2s; }
.achievements-section.animate-in .achievement-card-modern:nth-child(2) { animation-delay: 0.25s; }
.achievements-section.animate-in .achievement-card-modern:nth-child(3) { animation-delay: 0.3s; }
.achievements-section.animate-in .achievement-card-modern:nth-child(4) { animation-delay: 0.35s; }
.achievements-section.animate-in .achievement-card-modern:nth-child(5) { animation-delay: 0.4s; }

.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
    animation: floatIn 2s ease-in-out infinite;
}

@keyframes floatGently {
    0%, 100% {
        transform: translateY(0px) translateX(0);
    }
    25% {
        transform: translateY(-20px) translateX(-10px);
    }
    50% {
        transform: translateY(-30px) translateX(0);
    }
    75% {
        transform: translateY(-20px) translateX(10px);
    }
}

@keyframes floatLeft {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    33% {
        transform: translateX(-15px) translateY(-25px);
    }
    66% {
        transform: translateX(-8px) translateY(-15px);
    }
}

@keyframes floatRight {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    33% {
        transform: translateX(15px) translateY(-25px);
    }
    66% {
        transform: translateX(8px) translateY(-15px);
    }
}

@keyframes scaleFloat {
    0%, 100% {
        transform: scale(1) translateY(0);
    }
    50% {
        transform: scale(1.05) translateY(-20px);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: translateY(100px) scale(0.8);
    }
    60% {
        transform: translateY(-20px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(150px) rotateX(20deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

/* More dramatic floating animations for each section */
.match-center-section.animate-in {
    animation: bounceIn 0.4s ease forwards, floatLeft 5s ease-in-out 0.8s infinite;
}

.achievements-section.animate-in {
    animation: slideInUp 0.5s ease forwards, scaleFloat 4s ease-in-out 1s infinite;
}

.results-section.animate-in {
    animation: bounceIn 0.4s ease forwards, scaleFloat 4s ease-in-out 0.8s infinite;
}

.partners-section.animate-in {
    animation: slideInUp 0.4s ease forwards;
}

.footer.animate-in {
    animation: slideInUp 0.5s ease forwards, floatGently 5s ease-in-out 1s infinite;
}

/* Stagger Animation for Grid Items */
.scroll-animate .achievement-card-modern,
.scroll-animate .news-card,
.scroll-animate .site-gallery-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.animate-in .achievement-card-modern,
.scroll-animate.animate-in .news-card,
.scroll-animate.animate-in .site-gallery-item {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate.animate-in .achievement-card-modern:nth-child(1),
.scroll-animate.animate-in .news-card:nth-child(1),
.scroll-animate.animate-in .site-gallery-item:nth-child(1) { transition-delay: 0.1s; }

.scroll-animate.animate-in .achievement-card-modern:nth-child(2),
.scroll-animate.animate-in .news-card:nth-child(2),
.scroll-animate.animate-in .site-gallery-item:nth-child(2) { transition-delay: 0.2s; }

.scroll-animate.animate-in .achievement-card-modern:nth-child(3),
.scroll-animate.animate-in .news-card:nth-child(3),
.scroll-animate.animate-in .site-gallery-item:nth-child(3) { transition-delay: 0.3s; }

.scroll-animate.animate-in .achievement-card-modern:nth-child(4),
.scroll-animate.animate-in .news-card:nth-child(4),
.scroll-animate.animate-in .site-gallery-item:nth-child(4) { transition-delay: 0.4s; }

.scroll-animate.animate-in .achievement-card-modern:nth-child(5),
.scroll-animate.animate-in .news-card:nth-child(5),
.scroll-animate.animate-in .site-gallery-item:nth-child(5) { transition-delay: 0.5s; }

.scroll-animate.animate-in .news-card:nth-child(6),
.scroll-animate.animate-in .site-gallery-item:nth-child(6) { transition-delay: 0.6s; }

/* Section Title Animation */
.scroll-animate .section-title {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.scroll-animate.animate-in .section-title {
    opacity: 1;
    transform: translateY(0);
}

/* Match Cards Animation */
.scroll-animate .match-card,
.scroll-animate .fixture-card {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.scroll-animate.animate-in .match-card,
.scroll-animate.animate-in .fixture-card {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animate.animate-in .match-card:nth-child(1) { transition-delay: 0.1s; }
.scroll-animate.animate-in .match-card:nth-child(2) { transition-delay: 0.2s; }
.scroll-animate.animate-in .match-card:nth-child(3) { transition-delay: 0.3s; }
.scroll-animate.animate-in .match-card:nth-child(4) { transition-delay: 0.4s; }
.scroll-animate.animate-in .match-card:nth-child(5) { transition-delay: 0.5s; }

/* ========================================
   GLOBAL RESPONSIVE - KEEP SAME LOOK
   ======================================== */
   
/* Achievements Grid - Same Layout */
@media (max-width: 1024px) {
    .achievements-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Teams Grid - Same Layout */
@media (max-width: 768px) {
    .teams-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

/* Header - Same styling */
@media (max-width: 768px) {
    .header-inner {
        padding: 10px 15px;
        position: relative;
    }
    
    .logo {
        width: 100%;
        justify-content: center;
    }

    .logo-img {
        height: 60px;
        width: 60px;
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        margin-top: 0;
    }

    .header.scrolled .logo-img {
        height: 60px;
        width: 60px;
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        margin-top: 0;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(6px);
        border: 2px solid rgba(255, 255, 255, 0.5);
        box-shadow: 0 0 12px rgba(255,255,255,0.15), inset 0 0 12px rgba(255,255,255,0.05);
        padding: 8px;
    }
    
    .logo-text {
        font-size: 1.2rem;
        text-align: center;
        display: block;
        width: 100%;
    }
}

/* ========================================
   SECTION 6B: OUR KITS SHOP - COLLECTION
   ======================================== */
.shop-vault {
    background: linear-gradient(135deg, #ffffff 0%, #f3f4f6 50%, #e5e7eb 100%);
    padding: 20px 0;
    position: relative;
    overflow: hidden;
}

.shop-vault .section-title {
    font-family: 'Saira', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #111827;
    position: static;
    padding: 0;
}

.shop-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.bg-watermark {
    position: absolute;
    top: -60px;
    right: 0;
    font-size: 150px;
    font-weight: 900;
    color: #f7f7f7;
    z-index: 0;
    letter-spacing: 5px;
    user-select: none;
    pointer-events: none;
}

.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.header-left .shop-tag {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 3px;
    color: #333333;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.header-left h1 {
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 1px;
    color: #111827;
    text-transform: uppercase;
}

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

.header-right span {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #333333;
}

.btn-notify {
    background-color: #b31919;
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.btn-notify:hover {
    background-color: #941414;
}

.carousel-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    gap: 15px;
}

.carousel-window {
    overflow: hidden;
    width: 100%;
}

.product-grid {
    display: flex;
    gap: 25px;
    width: 100%;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-arrow {
    background: none;
    border: none;
    font-size: 32px;
    color: #333333;
    cursor: pointer;
    padding: 10px;
    user-select: none;
    flex-shrink: 0;
}

.nav-arrow:disabled {
    color: #cbd5e0;
    cursor: not-allowed;
}

.product-card {
    display: flex;
    flex-direction: column;
    flex: 0 0 calc((100% - (3 * 25px)) / 4);
    border: 1px solid #d1d5db;
    padding: 14px;
    border-radius: 8px;
}

.image-container {
    border-radius: 4px;
    height: 280px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 14px;
    margin-bottom: 14px;
    overflow: hidden;
}

.image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.product-card:hover .image-container img {
    transform: scale(1.15);
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    color: #4a4a4a;
    margin-bottom: 14px;
    line-height: 1.3;
    min-height: 0;
}

.price-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 14px;
}

.price-old {
    font-size: 18px;
    font-weight: 600;
    color: #a0aec0;
    text-decoration: line-through;
}

.price-current {
    font-size: 18px;
    font-weight: 700;
    color: #b31919;
}

.price-normal {
    font-size: 18px;
    font-weight: 700;
    color: #b31919;
}

.btn-order {
    background-color: #b31919;
    color: #ffffff;
    border: none;
    width: 100%;
    padding: 14px 0;
    font-size: 14px;
    font-weight: 700;
    border-radius: 25px;
    cursor: pointer;
    max-width: 140px;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.image-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.product-card:hover .image-container img {
    transform: scale(1.15);
}

.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 3px;
    text-transform: capitalize;
}

.badge.bestseller { background-color: #4a5568; }
.badge.sale { background-color: #2b6cb0; }
.badge.limited { background-color: #2d3748; }

.stock-banner {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffe5e5;
    color: #b31919;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 0;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    color: #4a4a4a;
    margin-bottom: 25px;
    line-height: 1.4;
    min-height: 44px;
}

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

.price-old {
    font-size: 16px;
    font-weight: 600;
    color: #a0aec0;
    text-decoration: line-through;
}

.price-current {
    font-size: 16px;
    font-weight: 700;
    color: #b31919;
}

.price-normal {
    font-size: 16px;
    font-weight: 700;
    color: #b31919;
}

.btn-order {
    background-color: #b31919;
    color: #ffffff;
    border: none;
    width: 100%;
    padding: 12px 0;
    font-size: 12px;
    font-weight: 700;
    border-radius: 25px;
    cursor: pointer;
    max-width: 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-order::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #22c55e;
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-order:hover:not(.disabled)::before {
    left: 0;
}

.btn-order.disabled {
    background-color: #cbd5e0;
    color: #ffffff;
    cursor: not-allowed;
}

.btn-order.disabled::before {
    display: none;
}

/* ---- FLUID MORPH ANIMATION ---- */
.fluid-blob {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.fluid-blob::before,
.fluid-blob::after {
    content: '';
    position: absolute;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fluid-blob::before {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -150px;
    background: radial-gradient(circle, rgba(34,197,94,0.15), rgba(34,197,94,0.03));
    transform: scale(0.4) rotate(0deg);
}

.fluid-blob::after {
    width: 500px;
    height: 500px;
    bottom: -180px;
    left: -120px;
    background: radial-gradient(circle, rgba(16,185,129,0.12), rgba(16,185,129,0.03));
    transform: scale(0.4) rotate(0deg);
}

.shop-vault.in-view .fluid-blob::before {
    opacity: 1;
    transform: scale(1) rotate(15deg);
    animation: blobMorph1 8s ease-in-out infinite alternate;
}

.shop-vault.in-view .fluid-blob::after {
    opacity: 1;
    transform: scale(1) rotate(-10deg);
    animation: blobMorph2 10s ease-in-out infinite alternate;
}

@keyframes blobMorph1 {
    0%   { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    25%  { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    50%  { border-radius: 50% 60% 30% 60% / 40% 50% 60% 50%; }
    75%  { border-radius: 60% 30% 50% 50% / 30% 60% 40% 70%; }
    100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

@keyframes blobMorph2 {
    0%   { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    25%  { border-radius: 60% 30% 50% 70% / 50% 70% 30% 60%; }
    50%  { border-radius: 30% 70% 40% 60% / 60% 40% 70% 30%; }
    75%  { border-radius: 70% 40% 60% 30% / 40% 60% 50% 70%; }
    100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
}

/* Shop Responsive */
@media (max-width: 768px) {
    .shop-vault {
        padding: 12px 0;
    }
    .shop-vault .section-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    .shop-header {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 16px;
    }
    .header-left h1 {
        font-size: 30px;
    }
    .header-right {
        margin-top: 0;
    }
    .product-card {
        flex: 0 0 calc((100% - (1 * 25px)) / 2);

    }
    .image-container {
        height: 200px;
        padding: 12px;
    }
    .image-container {
        height: 300px;
        padding: 15px;
    }
    .product-title {
        font-size: 16px;
        min-height: auto;
        margin-bottom: 15px;
    }
    .price-container {
        gap: 10px;
    }
    .price-old,
    .price-current,
    .price-normal {
        font-size: 16px;
    }
    .btn-order {
        max-width: 100%;
        padding: 12px 0;
        font-size: 13px;
    }
    .bg-watermark {
        font-size: 80px;
        top: -30px;
    }
}

@media (max-width: 480px) {
    .product-card {
        flex: 0 0 calc((100% - (0 * 25px)) / 1);
    }
    .image-container {
        height: 280px;
    }
    .shop-header {
        flex-direction: column;
        gap: 15px;
    }
    .header-left h1 {
        font-size: 32px;
    }
    .header-right {
        flex-wrap: wrap;
        gap: 10px;
    }
}

/* ========================================
   390x844px MOBILE PERFECT FIT
   ======================================== */
@media (max-width: 390px) {
    /* ---- HEADER ---- */
    .header-inner {
        padding: 6px 12px;
        height: 56px;
        justify-content: center;
    }
    .mobile-hamburger {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
    }
    .logo-img {
        height: 48px;
        width: 48px;
        position: absolute;
        left: 8px;
        top: 50%;
        transform: translateY(-50%);
    }
    .header.scrolled .logo-img {
        height: 48px;
        width: 48px;
        position: absolute;
        left: 8px;
        top: 50%;
        transform: translateY(-50%);
        margin-top: 0;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(6px);
        border: 2px solid rgba(255, 255, 255, 0.5);
        box-shadow: 0 0 12px rgba(255,255,255,0.15), inset 0 0 12px rgba(255,255,255,0.05);
        padding: 8px;
    }
    .logo-text {
        font-size: 1rem;
        letter-spacing: 1px;
        text-align: center;
        display: block;
        width: 100%;
    }

    /* ---- SECTION 1C: ABOUT ---- */
    .about-section {
        padding: 30px 0;
    }
    .about-card {
        padding: 24px 16px;
        border-radius: 16px;
    }
    .about-title {
        font-size: 1.1rem !important;
        white-space: normal !important;
        line-height: 1.3;
    }
    .about-icon {
        margin-bottom: 10px;
    }
    .about-logo {
        width: 50px;
        height: 50px;
    }
    .about-text {
        font-size: 0.82rem;
        line-height: 1.5;
    }
    .about-stats {
        gap: 10px;
    }
    .about-stat {
        padding: 10px 16px;
        min-width: 90px;
    }
    .stat-num {
        font-size: 1.1rem;
    }
    .stat-label {
        font-size: 0.6rem;
    }

    /* ---- SECTION 2: BANNER/HERO ---- */
    .hero-banner {
        min-height: 100vh;
        padding: 90px 4% 40px;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-badge {
        font-size: 0.65rem;
        padding: 5px 16px;
        letter-spacing: 2px;
    }
    .hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 2px;
        margin-bottom: 25px;
    }
    .hero-cta {
        gap: 12px;
    }
    .hero-btn {
        padding: 10px 22px;
        font-size: 0.75rem;
    }
    .hero-btn-live {
        font-size: 0.75rem;
        padding: 10px 22px;
    }
    .hero-bottom-cycle {
        bottom: 40px;
    }
    .flash-text {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }
    .hero-glow-1 {
        width: 300px;
        height: 300px;
    }
    .hero-glow-2 {
        width: 200px;
        height: 200px;
    }
    .futuristic-results .section-title {
        font-size: 1.6rem;
    }

    /* ---- OLD BANNER CONTENT ---- */
    .next-match-wrapper {
        padding: 18px 12px;
        max-width: 100%;
    }
    .next-match-label {
        font-size: 0.8rem;
    }
    .next-match-team-name {
        font-size: 0.65rem;
    }
    .next-match-logo {
        width: 35px;
        height: 35px;
    }
    .next-match-vs {
        font-size: 1.2rem;
    }
    .match-date {
        font-size: 0.7rem;
        gap: 3px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .date-box {
        padding: 3px 6px;
        font-size: 0.7rem;
    }
    .countdown {
        gap: 6px;
    }
    .countdown-item {
        min-width: 50px;
        padding: 6px 4px;
    }
    .countdown-number {
        font-size: 1.1rem;
    }
    .countdown-label {
        font-size: 0.5rem;
    }
    .btn-watch-live {
        padding: 8px 20px;
        font-size: 0.8rem;
    }
    .player-overlay {
        display: none;
    }

    /* ---- SECTION 2B: UPCOMING MATCHES ---- */
    .match-section {
        padding: 25px 10px;
    }
    .match-section .section-title {
        font-size: 1.2rem;
        padding: 10px 20px;
        margin-bottom: 20px;
    }
    .tabs {
        gap: 4px;
        justify-content: center;
    }
    .tabs button {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
    .match-card {
        min-width: 220px;
        max-width: 220px;
        height: 320px;
        padding: 14px;
    }
    .match-card .league-info img {
        width: 35px;
    }
    .match-card .league-info p {
        font-size: 0.65rem;
    }
    .match-card .league-info p span {
        font-size: 0.6rem;
    }
    .match-card .date-large {
        font-size: 0.85rem;
    }
    .match-card .team-img {
        width: 32px;
        height: 32px;
    }
    .match-card .team-name {
        font-size: 0.65rem;
    }
    .match-card .score {
        font-size: 1.1rem;
    }
    .match-card .vs-text {
        font-size: 0.9rem;
    }
    .match-card .venue {
        font-size: 0.6rem;
    }
    .team-logo {
        width: 32px;
        height: 32px;
        font-size: 0.65rem;
    }
    .nav-btn {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    .slider-wrapper {
        padding: 0 8px;
    }

    /* ---- SECTION 2C: MATCH BANNER ---- */
    .match-banner-section {
        padding: 90px 0;
    }
    .match-banner-inner {
        padding: 20px 0;
        gap: 20px;
    }
    .banner-title-white,
    .banner-title-neon {
        font-size: 2rem;
    }
    .banner-title-row {
        gap: 10px;
    }
    .banner-ball-icon {
        width: 32px;
        height: 32px;
    }
    .banner-title-row span {
        font-size: 2rem !important;
    }
    .banner-vs-box {
        padding: 14px;
    }
    .banner-logo-slot {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }
    .banner-team-name {
        font-size: 0.65rem;
    }
    .banner-vs-text {
        font-size: 1.2rem;
    }
    .banner-schedule-info {
        font-size: 0.6rem;
        margin-top: 10px;
        letter-spacing: 1px;
    }
    .banner-countdown {
        padding: 10px 8px;
        gap: 4px;
        border-radius: 10px;
        width: 100%;
        justify-content: space-around;
    }
    .banner-count-block {
        min-width: 38px;
    }
    .banner-count-num {
        font-size: 1.1rem;
    }
    .banner-count-label {
        font-size: 0.45rem;
    }
    .banner-count-divider {
        font-size: 1.1rem;
    }
    .banner-toggle-btn { padding: 6px 16px; font-size: 0.7rem; }
    .banner-matchup-block { gap: 15px; }

    /* ---- SECTION 3: RESULTS/FIXTURES ---- */
    .results-section {
        padding: 30px 10px;
    }
    .section-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    .table-wrapper .league-table {
        font-size: 0.65rem;
    }
    .table-wrapper .league-table th,
    .table-wrapper .league-table td {
        padding: 6px 3px;
        white-space: nowrap;
    }
    .table-body-scroll {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .toggle-container {
        margin-bottom: 15px;
    }
    .toggle-label {
        font-size: 0.85rem;
    }
    .toggle-switch {
        width: 70px;
        height: 30px;
    }
    .toggle-slider {
        width: 22px;
        height: 22px;
        top: 4px;
        left: 4px;
    }
    .toggle-switch.female .toggle-slider {
        transform: translateX(40px);
    }

    /* ---- SECTION 3B: MATCH RESULTS ---- */
    .futuristic-results {
        padding: 50px 10px;
    }
    .futuristic-results .section-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    .tab-toggle-container .tab-btn {
        padding: 8px 14px;
        font-size: 0.75rem;
    }
    .result-card-grid {
        gap: 14px;
    }

    /* ---- SECTION 6: LATEST NEWS ---- */
    .news-grid-section {
        padding: 50px 10px;
    }
    .news-grid-section .section-title {
        font-size: 2.2rem;
    }
    .news-grid-section .section-desc {
        font-size: 0.75rem;
        margin-bottom: 36px;
    }

    /* ---- SECTION 6B: KITS SHOP ---- */
    .shop-vault {
        padding: 8px 10px;
    }
    .shop-vault .section-title {
        font-size: 1.2rem;
        margin-bottom: 14px;
    }
    .shop-container {
        padding: 0 10px;
    }
    .shop-header {
        flex-direction: column;
        gap: 8px;
        margin-bottom: 12px;
    }
    .header-left h1 {
        font-size: 18px;
    }
    .header-left .shop-tag {
        font-size: 14px;
        margin-bottom: 4px;
    }
    .header-right span {
        font-size: 12px;
    }
    .btn-notify {
        padding: 8px 18px;
        font-size: 11px;
    }
    .product-grid {
        gap: 15px;
    }
    .image-container {
        height: 340px;
        padding: 12px;
    }
    .badge {
        font-size: 10px;
        padding: 3px 10px;
        top: 10px;
        left: 10px;
    }
    .stock-banner {
        font-size: 11px;
        padding: 8px 0;
    }
    .product-title {
        font-size: 15px;
        min-height: auto;
        margin-bottom: 12px;
    }
    .price-container {
        gap: 8px;
    }
    .price-old,
    .price-current,
    .price-normal {
        font-size: 15px;
    }
    .btn-order {
        padding: 12px 0;
        font-size: 12px;
        max-width: 100%;
    }
    .bg-watermark {
        font-size: 60px;
        top: -20px;
    }

    /* ---- SECTION 7: PARTNERS ---- */
    
    .partners-subtitle {
        font-size: 0.8rem;
        margin-bottom: 30px;
    }
    .partners-grid {
        gap: 24px;
    }
    .partner-logo {
        width: 180px;
        height: 180px;
        padding: 22px;
    }
    .partner-info {
        margin-top: 36px;
    }
    .partner-description {
        font-size: 1.05rem;
        line-height: 1.6;
    }
    .partner-visit-link {
        font-size: 0.85rem;
        padding: 12px 28px;
    }

    /* ---- SECTION 7: FOOTER ---- */
    .footer {
        padding: 30px 15px;
    }
    .footer-header h4 {
        font-size: 1rem;
    }
    .footer-logo {
        width: 50px;
        height: 50px;
    }
    .footer-content {
        flex-direction: column;
        gap: 20px;
    }
    .footer-links {
        flex-direction: column;
        gap: 20px;
    }
    .link-group h5 {
        font-size: 0.85rem;
    }
    .link-group li a {
        font-size: 0.8rem;
    }
    .footer-social h5 {
        font-size: 0.85rem;
    }
    .social-icons a {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    .footer-bottom p {
        font-size: 0.7rem;
    }

    /* ---- MODALS ---- */
    .match-modal .modal-content {
        padding: 20px 15px;
        margin: 10px;
        max-height: 85vh;
        overflow-y: auto;
    }
    .modal-team-name {
        font-size: 0.8rem;
    }
    .roster-modal-content {
        padding: 20px 12px;
        margin: 10px;
        max-height: 85vh;
        overflow-y: auto;
    }
    .roster-title {
        font-size: 1.3rem;
    }
    .roster-tab-btn {
        padding: 8px 14px;
        font-size: 0.75rem;
    }
    .roster-container {
        gap: 8px;
    }
    .roster-card {
        padding: 10px;
    }
    .news-modal-content {
        padding: 20px 15px;
        margin: 10px;
        max-height: 85vh;
        overflow-y: auto;
    }
    .modal-title {
        font-size: 1.1rem;
    }
}

/* ---- 360px EXTRA TIGHT ---- */
@media (max-width: 360px) {
    .header-inner { height: 50px; padding: 4px 8px; }
    .logo-img { height: 34px; width: 34px; }
    .mobile-hamburger { right: 8px; }
    .section-title { font-size: 1.1rem; }
    .hero-banner { min-height: 100vh; padding: 80px 4% 30px; }
    .hero-title { font-size: 1.5rem; }
    .hero-badge { font-size: 0.55rem; padding: 4px 12px; letter-spacing: 1px; }
    .hero-subtitle { font-size: 0.65rem; letter-spacing: 1px; margin-bottom: 20px; }
    .hero-cta { gap: 8px; }
    .hero-btn { padding: 7px 14px; font-size: 0.65rem; letter-spacing: 1px; }
    .hero-btn-live { padding: 7px 14px; font-size: 0.65rem; }
    .hero-bottom-cycle { bottom: 30px; }
    .flash-text { font-size: 0.5rem; letter-spacing: 1px; }
    .futuristic-results .section-title { font-size: 1.6rem; }
    .about-card { padding: 20px 12px; }
    .about-text { font-size: 0.8rem; }
    .about-logo { width: 40px; height: 40px; }
    .about-title { font-size: 1.2rem; letter-spacing: 2px; }
    .about-stats { gap: 10px; }
    .about-stat { padding: 10px 16px; min-width: 80px; }
    .stat-num { font-size: 1rem; }
    .stat-label { font-size: 0.6rem; }
    .match-section { padding: 20px 6px; }
    .match-card { min-width: 200px; max-width: 200px; height: 340px; }
    .tabs button { padding: 8px 12px; font-size: 0.75rem; }
    .table-wrapper .league-table { font-size: 0.55rem; }
    .table-wrapper .league-table th, .table-wrapper .league-table td { padding: 4px 2px; }
    .fixtures-layout { grid-template-columns: 1fr; gap: 20px; }
    .fixtures-left-stripe { display: none; }
    .fixtures-left-panel { gap: 0; }
    .fixtures-left-title { font-size: 18px; }
    .fixtures-left-desc { font-size: 12px; line-height: 1.6; }
    .fixture-tab-btn { padding: 5px 8px; font-size: 0.5rem; }
    .fixture-card-top { padding: 8px 8px; gap: 4px; }
    .fixture-team-logo { width: 30px; height: 30px; flex-shrink: 0; }
    .fixture-team-logo img { width: 16px; height: 16px; }
    .fixture-team-name { font-size: 11px; overflow-wrap: break-word; word-break: break-word; }
    .fixture-vs-badge { font-size: 13px; flex-shrink: 0; }
    .fixture-reveal-inner { flex-direction: column; align-items: flex-start; padding: 12px 8px; gap: 8px; }
    .fixture-reveal-date { font-size: 12px; }
    .fixture-reveal-venue { font-size: 12px; }
    .fixture-reveal-btn { min-width: 100px; height: 36px; font-size: 12px; }
    .fixtures-view-all-btn { height: 40px; font-size: 14px; padding: 0 16px; margin-top: 14px; }
    .fixture-toggle-container { margin-bottom: 10px; }
    .tile { height: 170px; }
    .tile-details { padding: 10px; }
    .tile-details h3 { font-size: 0.7rem; }
    .achievement-card-modern { padding: 16px 10px; min-height: 170px; }
    .achievement-card-modern .ach-trophy-icon { width: 36px; height: 36px; }
    .achievement-card-modern .ach-title { font-size: 0.7rem; }
    .achievement-card-modern .ach-year { font-size: 0.6rem; padding: 2px 10px; }
    .btn-gallery-ultra { padding: 10px 20px; font-size: 0.75rem; }
    .footer { padding: 20px 10px; }
    .nav-list .nav-link { font-size: 0.7rem; padding: 8px 10px; }
    .btn-watch-live { padding: 10px 24px; font-size: 0.75rem; }
    .match-banner-section { padding: 75px 0; }
    .banner-title-white, .banner-title-neon { font-size: 2rem; }
    .banner-vs-box { padding: 12px; }
    .banner-countdown { padding: 8px 10px; gap: 6px; }
    .banner-count-num { font-size: 1.2rem; }
    .banner-count-label { font-size: 0.55rem; }
    .banner-toggle-btn { padding: 6px 14px; font-size: 0.65rem; }
}

/* ========================================
   SECTION ENTRANCE STAGGER ANIMATION
   ======================================== */
.anim-section .anim-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.anim-section .anim-item.visible-item {
    opacity: 1;
    transform: translateY(0);
}

/* Shop product wave stagger */
.product-card.anim-item {
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.product-card.anim-item:nth-child(1) { transition-delay: 0s; }
.product-card.anim-item:nth-child(2) { transition-delay: 0.03s; }
.product-card.anim-item:nth-child(3) { transition-delay: 0.06s; }
.product-card.anim-item:nth-child(4) { transition-delay: 0.09s; }
.product-card.anim-item:nth-child(5) { transition-delay: 0.12s; }
.product-card.anim-item:nth-child(6) { transition-delay: 0.15s; }
.product-card.anim-item:nth-child(7) { transition-delay: 0.18s; }
.product-card.anim-item:nth-child(8) { transition-delay: 0.21s; }

/* ========================================
   SECTION 3C: OUR FIXTURES
   ======================================== */
.fixtures-section {
    background: linear-gradient(135deg, #0a0a1a 0%, #0d2818 30%, #0a0a0a 70%, #0d1a2e 100%);
    padding: 80px 28px;
    position: relative;
    min-height: auto;
    overflow: hidden;
}


.fixture-toggle-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}
.fixture-toggle {
    display: flex;
    gap: 0;
    border-radius: 50px;
    overflow: hidden;
    border: 2px solid rgba(34, 197, 94, 0.3);
    background: rgba(10,10,26,0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(34,197,94,0.15), inset 0 1px 0 rgba(255,255,255,0.05);
}
.fixture-tab-btn {
    padding: 12px 28px;
    border: none;
    background: transparent;
    color: rgba(255,255,255,0.5);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.fixture-tab-btn.active {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    box-shadow: 0 0 20px rgba(34,197,94,0.4);
}
.fixture-tab-btn:not(:last-child) {
    border-right: 1px solid rgba(34,197,94,0.15);
}
/* Fixtures Layout — Left Panel + Right Cards */
.fixtures-layout {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 50px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* ---- LEFT INFO PANEL ---- */
.fixtures-left-panel {
    display: flex;
    gap: 28px;
}
.fixtures-left-stripe {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}
.fixtures-vertical-line {
    width: 2px;
    height: 80px;
    background: rgba(255,255,255,0.25);
    margin-bottom: 14px;
}
.fixtures-vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    color: rgba(255,255,255,0.3);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
}
.fixtures-left-content {
    padding-top: 6px;
}
.fixtures-left-title {
    color: #ffffff;
    font-size: 34px;
    line-height: 1.05;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Oswald', sans-serif;
}
.fixtures-left-divider {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.12);
    margin: 18px 0 22px;
}
.fixtures-left-desc {
    color: rgba(255,255,255,0.6);
    font-size: 16px;
    line-height: 1.9;
    max-width: 480px;
}
.fixtures-view-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 38px;
    height: 60px;
    border: 2px solid #d6a30f;
    background: #2f2d3d;
    color: #f3c320;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Oswald', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 28px;
}
.fixtures-view-all-btn:hover {
    background: #d6a30f;
    color: #2f2d3d;
    transform: translateY(-2px);
}

/* ---- RIGHT FIXTURES LIST ---- */
.fixtures-right-panel {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.fixture-cards-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.fixture-card-empty {
    text-align: center;
    padding: 40px;
    color: rgba(255,255,255,0.4);
    font-weight: 600;
    font-size: 1rem;
    background: rgba(255,255,255,0.02);
    border-radius: 16px;
    border: 1px dashed rgba(243,195,32,0.15);
}

/* Individual Fixture Card */
.fixture-card {
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(243,195,32,0.1);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.fixture-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.3);
}
.fixture-card-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 28px;
}
.fixture-team-block {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    flex: 1;
}
.fixture-team-block.right {
    flex-direction: row-reverse;
}
.fixture-team-logo {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    border: 3px solid #d8a917;
    background: #2f2d3d;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}
.fixture-team-logo img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}
.fixture-team-name {
    color: #ffffff;
    font-size: 28px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.02em;
}
.fixture-vs-badge {
    flex-shrink: 0;
    color: rgba(255,255,255,0.9);
    font-size: 28px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.02em;
}

/* Hover Reveal Drawer */
.fixture-reveal {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-8px);
    transition: max-height 0.45s ease, opacity 0.35s ease, transform 0.35s ease;
}
.fixture-card:hover .fixture-reveal {
    max-height: 220px;
    opacity: 1;
    transform: translateY(0);
}
.fixture-reveal-inner {
    background: #2f2d3d;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 28px;
}
.fixture-reveal-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.fixture-reveal-date {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 500;
}
.fixture-reveal-venue {
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    line-height: 1.6;
}
.fixture-reveal-actions {
    display: flex;
    flex-direction: row;
    gap: 12px;
    flex-shrink: 0;
}
.fixture-reveal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    height: 56px;
    border: 2px solid #d6a30f;
    background: transparent;
    color: #f3c320;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Oswald', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}
.fixture-reveal-btn:hover {
    background: #d6a30f;
    color: #2f2d3d;
}

/* Arrow Controls */
.fixtures-arrows {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}
.fixtures-arrow {
    width: 44px;
    height: 44px;
    border: 2px solid rgba(243,195,32,0.3);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f3c320;
    cursor: pointer;
    transition: all 0.3s ease;
}
.fixtures-arrow:hover {
    background: #d6a30f;
    border-color: #d6a30f;
    color: #2f2d3d;
}

/* Fixture Modal */
.fixture-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.fixture-modal-overlay.active {
    display: flex;
}
.fixture-modal-card {
    background: linear-gradient(135deg, #0d1a12, #0a0a1a);
    border-radius: 24px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(34,197,94,0.2);
    box-shadow: 0 0 60px rgba(34,197,94,0.15);
    position: relative;
}
.fixture-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.fixture-modal-close:hover {
    background: rgba(34,197,94,0.2);
    border-color: #22c55e;
}
.fixture-modal-teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}
.fixture-modal-team {
    text-align: center;
    flex: 1;
}
.fixture-modal-team .team-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 8px;
}
.fixture-modal-team .team-name {
    color: white;
    font-weight: 700;
    font-size: 1rem;
}
.fixture-modal-vs {
    color: #22c55e;
    font-weight: 900;
    font-size: 1.5rem;
    text-shadow: 0 0 20px rgba(34,197,94,0.3);
}
.fixture-modal-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 20px 0;
}
.fixture-modal-info-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 14px;
    text-align: center;
}
.fixture-modal-info-item .label {
    color: rgba(255,255,255,0.4);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 4px;
}
.fixture-modal-info-item .value {
    color: #22c55e;
    font-weight: 700;
    font-size: 0.95rem;
}
.fixture-modal-desc {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    line-height: 1.7;
    text-align: center;
    margin-top: 20px;
    padding: 16px;
    background: rgba(255,255,255,0.02);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.04);
}
@media (max-width: 768px) {
    .fixtures-section {
        padding: 40px 10px;
    }
    .fixtures-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .fixtures-left-stripe {
        display: none;
    }
    .fixtures-left-panel {
        gap: 0;
    }
    .fixtures-left-title {
        font-size: 26px;
    }
    .fixture-tab-btn {
        padding: 10px 16px;
        font-size: 0.7rem;
    }
    .fixture-card-top {
        padding: 16px 18px;
    }
    .fixture-team-block {
        gap: 10px;
        min-width: 0;
        flex: 1;
    }
    .fixture-team-logo {
        width: 46px;
        height: 46px;
        flex-shrink: 0;
    }
    .fixture-team-logo img {
        width: 26px;
        height: 26px;
    }
    .fixture-team-name {
        font-size: 18px;
        overflow-wrap: break-word;
        word-break: break-word;
    }
    .fixture-vs-badge {
        font-size: 20px;
        flex-shrink: 0;
    }
    .fixture-reveal-inner {
        padding: 18px 20px;
        flex-wrap: wrap;
    }
    .fixture-reveal-btn {
        min-width: 150px;
        height: 48px;
        font-size: 16px;
    }
    .fixtures-view-all-btn {
        height: 54px;
        font-size: 18px;
    }
    .fixture-toggle-container {
        margin-bottom: 20px;
    }
    .fixture-modal-card {
        padding: 24px;
    }
    .fixture-modal-teams {
        gap: 12px;
    }
    .fixture-modal-team .team-logo {
        width: 45px;
        height: 45px;
    }
    .fixture-modal-team .team-name {
        font-size: 0.85rem;
    }
    .fixture-modal-vs {
        font-size: 1.2rem;
    }
    .fixture-modal-info {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
}
@media (max-width: 390px) {
    .fixtures-section {
        padding: 30px 6px;
    }
    .fixtures-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .fixtures-left-stripe {
        display: none;
    }
    .fixtures-left-panel {
        gap: 0;
    }
    .fixtures-left-title {
        font-size: 18px;
    }
    .fixtures-left-desc {
        font-size: 13px;
        line-height: 1.7;
    }
    .fixture-tab-btn {
        padding: 7px 10px;
        font-size: 0.55rem;
    }
    .fixture-card-top {
        padding: 10px 10px;
        gap: 6px;
    }
    .fixture-team-block {
        gap: 6px;
        min-width: 0;
        flex: 1;
    }
    .fixture-team-logo {
        width: 32px;
        height: 32px;
        flex-shrink: 0;
    }
    .fixture-team-logo img {
        width: 18px;
        height: 18px;
    }
    .fixture-team-name {
        font-size: 12px;
        overflow-wrap: break-word;
        word-break: break-word;
    }
    .fixture-vs-badge {
        font-size: 14px;
        flex-shrink: 0;
    }
    .fixture-reveal-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 10px;
        gap: 8px;
    }
    .fixture-reveal-date {
        font-size: 12px;
    }
    .fixture-reveal-venue {
        font-size: 12px;
    }
    .fixture-reveal-btn {
        min-width: 110px;
        height: 36px;
        font-size: 13px;
    }
    .fixtures-view-all-btn {
        height: 40px;
        font-size: 14px;
        padding: 0 16px;
        margin-top: 16px;
    }
    .fixture-toggle-container {
        margin-bottom: 12px;
    }
    .fixture-modal-card {
        padding: 16px;
    }
    .fixture-modal-info {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   MOBILE RESPONSIVE — ALL CONTENT FITS
   Targets ≤480px (small phones up to large phones)
   ======================================== */

@media (max-width: 480px) {
    body { overflow-x: hidden; }

    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
    }

    .section {
        min-height: auto;
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.3rem;
        margin-bottom: 24px;
    }

    /* ---- LEAGUE TABLE: make scrollable, shrink text ---- */
    .table-card-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nwfl-league-table {
        font-size: 0.6rem;
        min-width: 420px;
    }

    .nwfl-league-table thead {
        display: table;
        width: 100%;
        table-layout: fixed;
    }

    .nwfl-league-table tbody {
        display: block;
        overflow-y: auto;
        max-height: 195px;
    }

    .nwfl-league-table tbody tr {
        display: table;
        width: 100%;
        table-layout: fixed;
    }

    .nwfl-league-table th,
    .nwfl-league-table td {
        padding: 5px 3px;
    }

    .nwfl-league-table th:nth-child(1),
    .nwfl-league-table td:nth-child(1) {
        width: 8%;
        padding-left: 6px;
    }
    .nwfl-league-table th:nth-child(2),
    .nwfl-league-table td:nth-child(2) {
        width: 30%;
    }
    .nwfl-league-table th:nth-child(3),
    .nwfl-league-table th:nth-child(4),
    .nwfl-league-table th:nth-child(5),
    .nwfl-league-table th:nth-child(6),
    .nwfl-league-table td:nth-child(3),
    .nwfl-league-table td:nth-child(4),
    .nwfl-league-table td:nth-child(5),
    .nwfl-league-table td:nth-child(6) {
        width: 7%;
    }
    .nwfl-league-table th:nth-child(7),
    .nwfl-league-table td:nth-child(7) {
        width: 7%;
    }
    .nwfl-league-table th:nth-child(8),
    .nwfl-league-table td:nth-child(8) {
        width: 7%;
    }
    .nwfl-league-table th:nth-child(9),
    .nwfl-league-table td:nth-child(9) {
        width: 12%;
    }

    .form-dots .dot {
        width: 7px;
        height: 7px;
    }

    .row-index {
        width: 20px;
        height: 20px;
        line-height: 20px;
        font-size: 0.6rem;
    }

    .team-title-text {
        font-size: 0.65rem;
    }

    /* ---- LEAGUE TABLE SIDEBAR ---- */
    .nwfl-section-container {
        flex-direction: column;
    }

    .left-panel-column {
        width: 100%;
        min-width: unset;
    }

    .left-panel-column .branded-heading {
        font-size: 1.3rem;
    }

    .sidebar-display-card {
        padding: 16px;
    }

    .sidebar-stats-grid {
        gap: 6px;
    }

    .grid-stat-box {
        padding: 8px 6px;
    }

    .grid-stat-box .v-num {
        font-size: 1rem;
    }

    .grid-stat-box .v-lbl {
        font-size: 0.55rem;
    }

    /* ---- GENDER TOGGLE ---- */
    .gender-toggle-bar .lbl-toggle {
        font-size: 0.8rem;
    }

    .switch-toggle {
        width: 60px;
        height: 30px;
    }

    .switch-toggle .toggle-slider-rs {
        width: 22px;
        height: 22px;
        top: 4px;
        left: 4px;
    }

    .switch-toggle input:checked + .toggle-slider-rs {
        transform: translateX(30px);
    }

    /* ---- FUTURISTIC RESULTS TABLE ---- */
    .futuristic-results {
        padding: 40px 15px;
    }

    .futuristic-results .section-title {
        font-size: 1.8rem;
    }

    .result-card-grid {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding-bottom: 12px;
        scrollbar-width: thin;
        scrollbar-color: rgba(34,197,94,0.3) transparent;
    }

    .result-card-grid::-webkit-scrollbar {
        height: 4px;
    }

    .result-card-grid::-webkit-scrollbar-track {
        background: transparent;
    }

    .result-card-grid::-webkit-scrollbar-thumb {
        background: rgba(34,197,94,0.3);
        border-radius: 4px;
    }

    .futuristic-results .result-card {
        flex: 0 0 85%;
        scroll-snap-align: start;
    }

    .futuristic-results .result-card .match-teams {
        padding: 14px 16px;
    }

    .futuristic-results .result-card .team .team-name {
        font-size: 13px;
    }

    .futuristic-results .score-block {
        padding: 0 10px;
    }

    .futuristic-results .result-score {
        font-size: 1.3rem;
    }

    .futuristic-results .result-divider {
        font-size: 1rem;
    }

    .futuristic-results .result-card .match-details {
        padding: 8px 16px;
        flex-wrap: wrap;
        gap: 8px;
    }

    .futuristic-results .result-card .match-meta {
        gap: 10px;
    }

    .futuristic-results .result-competition {
        font-size: 0.6rem;
    }

    .futuristic-results .match-date {
        font-size: 0.65rem;
    }

    .futuristic-results .match-venue {
        font-size: 0.6rem;
    }

    .futuristic-results .result-pill {
        width: 24px;
        height: 24px;
        font-size: 0.6rem;
    }

    .tab-toggle .tab-btn {
        padding: 8px 14px;
        font-size: 0.7rem;
    }

    .tab-toggle-container {
        margin-bottom: 16px;
    }

    /* ---- FIXTURES CARDS ---- */
    .fixtures-section {
        padding: 30px 15px;
    }

    .fixtures-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .fixtures-left-stripe {
        display: none;
    }

    .fixtures-left-panel {
        gap: 0;
    }

    .fixtures-left-title {
        font-size: 22px;
    }

    .fixtures-left-desc {
        font-size: 14px;
        line-height: 1.8;
    }

    .fixture-tab-btn {
        padding: 8px 14px;
        font-size: 0.65rem;
    }

    .fixture-card-top {
        padding: 14px 14px;
        gap: 10px;
    }

    .fixture-team-block {
        gap: 8px;
        min-width: 0;
        flex: 1;
    }

    .fixture-team-logo {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }

    .fixture-team-logo img {
        width: 22px;
        height: 22px;
    }

    .fixture-team-name {
        font-size: 16px;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .fixture-vs-badge {
        font-size: 17px;
        flex-shrink: 0;
    }

    .fixture-reveal-inner {
        padding: 14px 14px;
        flex-wrap: wrap;
        gap: 12px;
    }

    .fixture-reveal-btn {
        min-width: 130px;
        height: 42px;
        font-size: 14px;
    }

    .fixtures-view-all-btn {
        height: 46px;
        font-size: 16px;
        padding: 0 24px;
    }

    .fixture-toggle-container {
        margin-bottom: 16px;
    }

    /* ---- HERO BANNER ---- */
    .hero-mobile-video {
        display: block;
        opacity: 0.15;
    }

    .carousel-viewport {
        display: none !important;
    }

    .hero-content {
        z-index: 2;
        position: relative;
    }

    .hero-banner {
        height: auto;
        min-height: 100vh;
        padding: 100px 15px 50px;
    }

    .hero-bg {
        opacity: 0.2;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 5px 16px;
    }

    .hero-cta {
        flex-direction: column !important;
        gap: 12px;
        align-items: center;
    }

    .hero-btn {
        padding: 10px 20px;
        font-size: 0.75rem;
    }

    .hero-btn-live {
        font-size: 0.75rem;
        padding: 10px 20px;
    }

    /* ---- ABOUT ---- */
    .about-section {
        padding: 30px 0;
    }

    .about-card {
        padding: 24px 16px;
        border-radius: 16px;
    }

    .about-title {
        font-size: 1.2rem;
    }

    .about-text {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .about-stats {
        gap: 10px;
    }

    .about-stat {
        padding: 10px 16px;
        min-width: 90px;
    }

    .stat-num {
        font-size: 1.1rem;
    }

    .stat-label {
        font-size: 0.6rem;
    }

    /* ---- MATCH BANNER ---- */
    .match-banner-section {
        padding: 80px 0;
    }

    .match-banner-inner {
        flex-direction: column;
        gap: 20px;
        padding: 20px 0;
    }

    .banner-title-white,
    .banner-title-neon {
        font-size: 2.2rem;
    }

    .banner-title-row {
        justify-content: center;
    }

    .banner-vs-box {
        padding: 16px;
    }

    .banner-team-name {
        font-size: 0.7rem;
    }

    .banner-vs-text {
        font-size: 1.4rem;
    }

    .banner-schedule-info {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }

    .banner-countdown {
        padding: 10px 12px;
        gap: 8px;
    }

    .banner-count-block {
        min-width: 40px;
    }

    .banner-count-num {
        font-size: 1.2rem;
    }

    .banner-count-label {
        font-size: 0.45rem;
    }

    .banner-count-divider {
        font-size: 1.2rem;
    }

    .banner-toggle-btn {
        padding: 6px 16px;
        font-size: 0.7rem;
    }

    /* ---- UPCOMING MATCHES ---- */
    .match-section {
        padding: 24px 10px;
    }

    .match-section .section-title {
        font-size: 1.1rem;
        padding: 8px 18px;
        margin-bottom: 16px;
    }

    .tabs button {
        padding: 8px 12px;
        font-size: 0.7rem;
    }

    .match-card {
        min-width: 220px;
        max-width: 220px;
        height: auto;
        padding: 12px;
    }

    .match-card .league-info img {
        width: 30px;
    }

    .match-card .league-info p {
        font-size: 0.65rem;
    }

    .match-card .date-large {
        font-size: 0.9rem;
    }

    .match-card .team-img {
        width: 30px;
        height: 30px;
    }

    .match-card .team-name {
        font-size: 0.65rem;
    }

    .match-card .score {
        font-size: 1rem;
    }

    .match-card .vs-text {
        font-size: 0.9rem;
    }

    .team-logo {
        width: 28px;
        height: 28px;
        font-size: 0.6rem;
    }

    .nav-btn {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .slider-wrapper {
        padding: 0 6px;
    }

    /* ---- RESULTS SECTION ---- */
    .results-section {
        padding: 30px 15px;
    }

    .toggle-label {
        font-size: 0.85rem;
    }

    .toggle-switch {
        width: 70px;
        height: 30px;
    }

    .toggle-slider {
        width: 22px;
        height: 22px;
        top: 4px;
        left: 4px;
    }

    .toggle-switch.female .toggle-slider {
        transform: translateX(40px);
    }

    /* ---- ACHIEVEMENTS ---- */
    .achievements-section .section-title {
        font-size: 1.3rem;
        letter-spacing: 2px;
        white-space: nowrap;
    }

    .achievements-grid-modern {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding: 0 5% 14px;
        width: 100%;
        scrollbar-width: none;
    }
    .achievements-grid-modern::-webkit-scrollbar { display: none; }

    .achievement-card-modern {
        flex: 0 0 58vw;
        min-height: 280px;
        padding: 24px 14px 20px;
        scroll-snap-align: start;
        background: #fff;
        border-color: rgba(0,0,0,0.08);
        box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    }
    .achievement-card-modern::before { display: none; }
    .achievement-card-modern:last-child { margin-right: 5vw; }
    .achievement-card-modern .ach-title {
        font-size: 0.8rem;
        color: #1a1a2e;
    }
    .achievement-card-modern .ach-year {
        font-size: 0.65rem;
        color: rgba(0,0,0,0.35) !important;
    }
    .achievement-card-modern .ach-medal-text {
        font-size: 0.65rem;
        color: rgba(0,0,0,0.5) !important;
    }
    .achievement-card-modern .ach-divider {
        background: linear-gradient(90deg, transparent, rgba(0,0,0,0.08), transparent);
    }
    .ach-trophy-icon {
        width: 40px;
        height: 48px;
    }

    .btn-gallery-ultra {
        padding: 12px 28px;
        font-size: 0.85rem;
    }

    /* ---- NEWS ---- */
    .news-grid-section {
        padding: 40px 15px;
    }

    .news-grid-section .section-title {
        font-size: 1.8rem;
    }

    .news-grid-section .section-desc {
        font-size: 0.7rem;
        margin-bottom: 28px;
    }

    .card-grid {
        gap: 16px;
        grid-template-columns: 1fr;
    }

    .news-card .image-container {
        height: 220px;
    }

    .news-card .card-content {
        padding: 18px 18px 16px;
    }

    .news-card .card-title {
        font-size: 15px;
    }

    .news-card .card-text {
        font-size: 12.5px;
    }

    .news-btn-more {
        padding: 12px 28px;
        font-size: 0.7rem;
    }

    .tile {
        height: 220px;
    }

    .tile-details {
        padding: 14px;
    }

    .tile-details h3 {
        font-size: 0.85rem;
    }

    .tile-date {
        font-size: 0.7rem;
    }

    /* ---- SHOP ---- */
    .shop-vault {
        padding: 10px 0;
    }

    .shop-vault .section-title {
        font-size: 1.4rem;
        margin-bottom: 16px;
    }

    .shop-container {
        padding: 0 12px;
    }

    .shop-header {
        flex-direction: column;
        gap: 10px;
    }

    .header-left h1 {
        font-size: 28px;
    }

    .header-left .shop-tag {
        font-size: 14px;
    }

    .header-right {
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 0;
    }

    .header-right span {
        font-size: 12px;
    }

    .btn-notify {
        padding: 8px 18px;
        font-size: 11px;
    }

    .product-card {
        flex: 0 0 calc((100% - 15px) / 2) !important;
    }

    .product-grid {
        gap: 12px;
    }

    .image-container {
        height: 180px;
        padding: 10px;
    }

    .product-title {
        font-size: 14px;
        min-height: auto;
        margin-bottom: 10px;
    }

    .price-normal,
    .price-old,
    .price-current {
        font-size: 14px;
    }

    .btn-order {
        max-width: 100%;
        padding: 10px 0;
        font-size: 12px;
    }

    .bg-watermark {
        font-size: 60px;
        top: -20px;
    }

    .badge {
        font-size: 10px;
        padding: 3px 10px;
        top: 10px;
        left: 10px;
    }

    .stock-banner {
        font-size: 11px;
        padding: 8px 0;
    }

    /* ---- PARTNERS ---- */
    

#sponsors,
.partners-section {
    background: linear-gradient(135deg, #0a0a1a 0%, #120d24 50%, #0a0a1a 100%);
    padding: 100px 28px;
    position: relative;
    border-bottom-left-radius: 180px;
    border-bottom-right-radius: 180px;
}

.partners-section .section-title {
        font-size: 2rem;
    }

    .partners-subtitle {
        font-size: 0.8rem;
        margin-bottom: 24px;
    }

    .partners-grid {
        gap: 20px;
    }

    .partner-logo {
        width: 160px;
        height: 160px;
        padding: 20px;
    }

    .partner-description {
        font-size: 1rem;
        line-height: 1.5;
    }

    .partner-visit-link {
        font-size: 0.8rem;
        padding: 10px 24px;
    }

    /* ---- FOOTER ---- */
    .footer {
        padding: 40px 15px;
        min-height: auto;
    }

    .footer-header h4 {
        font-size: 1.2rem;
    }

    .footer-logo {
        width: 50px;
        height: 50px;
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
    }

    .footer-links {
        flex-direction: column;
        gap: 20px;
    }

    .link-group h5 {
        font-size: 0.85rem;
    }

    .link-group li a {
        font-size: 0.8rem;
    }

    .footer-social h5 {
        font-size: 0.85rem;
    }

    .social-icons a {
        font-size: 1.2rem;
    }

    .footer-bottom p {
        font-size: 0.75rem;
    }

    /* ---- MODALS ---- */
    .news-modal-content {
        padding: 60px 20px;
    }

    .news-modal .modal-title {
        font-size: 1.5rem;
    }

    .news-modal .modal-highlight {
        font-size: 1rem;
    }

    .news-modal .modal-text {
        font-size: 0.95rem;
    }

    .modal-close {
        top: 12px;
        right: 16px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .match-modal .modal-content {
        padding: 20px 15px;
        margin: 10px;
    }

    .modal-team img {
        width: 60px;
        height: 60px;
    }

    .modal-team-name {
        font-size: 0.9rem;
    }

    .modal-sections {
        grid-template-columns: 1fr;
    }

    .modal-teams {
        gap: 20px;
    }

    /* Roster modals */
    .roster-modal-content {
        padding: 60px 16px 30px;
    }

    .roster-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .roster-tabs-nav {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        margin-bottom: 20px;
    }

    .roster-tab-btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .roster-container {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
    }

    .roster-number {
        font-size: 32px;
    }

    .roster-name {
        font-size: 14px;
    }

    .fixture-modal-card {
        padding: 20px;
    }

    .fixture-modal-teams {
        gap: 10px;
    }

    .fixture-modal-team .team-logo {
        width: 40px;
        height: 40px;
    }

    .fixture-modal-team .team-name {
        font-size: 0.8rem;
    }

    .fixture-modal-vs {
        font-size: 1.2rem;
    }

    .fixture-modal-info {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

/* ---- 360px EXTRA TIGHT (already exists, but reinforced) ---- */
@media (max-width: 360px) {
    .container {
        padding: 0 10px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .nwfl-league-table {
        min-width: 360px;
        font-size: 0.55rem;
    }

    .fixtures-layout {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .fixtures-left-stripe {
        display: none;
    }

    .fixtures-left-panel {
        gap: 0;
    }

    .fixtures-left-title {
        font-size: 16px;
    }

    .fixtures-left-desc {
        font-size: 12px;
        line-height: 1.6;
    }

    .fixture-tab-btn {
        padding: 5px 8px;
        font-size: 0.5rem;
    }

    .fixture-card-top {
        padding: 8px 6px;
        gap: 4px;
    }

    .fixture-team-block {
        gap: 4px;
        min-width: 0;
        flex: 1;
    }

    .fixture-team-logo {
        width: 28px;
        height: 28px;
        flex-shrink: 0;
    }

    .fixture-team-logo img {
        width: 16px;
        height: 16px;
    }

    .fixture-team-name {
        font-size: 10px;
        overflow-wrap: break-word;
        word-break: break-word;
    }

    .fixture-vs-badge {
        font-size: 12px;
        flex-shrink: 0;
    }

    .fixture-reveal-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 6px;
        gap: 6px;
    }

    .fixture-reveal-date {
        font-size: 11px;
    }

    .fixture-reveal-venue {
        font-size: 11px;
    }

    .fixture-reveal-btn {
        min-width: 90px;
        height: 32px;
        font-size: 11px;
    }

    .fixtures-view-all-btn {
        height: 36px;
        font-size: 12px;
        padding: 0 12px;
        margin-top: 12px;
    }

    .fixture-toggle-container {
        margin-bottom: 10px;
    }

    .product-card {
        flex: 0 0 100% !important;
    }

    .tile {
        height: 180px;
    }

    .team-card-name {
        font-size: 1.3rem;
    }

    .achievement-card-modern {
        flex: 0 0 72vw;
        min-height: 240px;
        padding: 18px 12px 16px;
        background: #fff;
        border-color: rgba(0,0,0,0.08);
        box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    }
    .achievement-card-modern::before { display: none; }
    .achievement-card-modern .ach-title {
        font-size: 0.8rem;
        color: #1a1a2e;
    }
    .achievement-card-modern .ach-year {
        color: rgba(0,0,0,0.35) !important;
    }
    .achievement-card-modern .ach-medal-text {
        color: rgba(0,0,0,0.5) !important;
    }
    .achievement-card-modern .ach-divider {
        background: linear-gradient(90deg, transparent, rgba(0,0,0,0.08), transparent);
    }
    .ach-trophy-icon {
        width: 36px;
        height: 36px;
    }

    .partner-logo {
        width: 130px;
        height: 130px;
        padding: 16px;
    }
}

/* ---- LIQUID MORPH BACKGROUND ---- */
.liquid-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    filter: url('#goo');
    pointer-events: none;
}

.liquid-svg-filter {
    position: absolute;
    width: 0;
    height: 0;
}

.liquid-blob {
    position: absolute;
    border-radius: 50%;
    will-change: transform, border-radius;
}

.liquid-blob.b1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(34,197,94,0.18), rgba(34,197,94,0.05));
    top: -100px;
    left: -100px;
    animation: liquidFloat1 18s ease-in-out infinite, liquidMorphA 12s ease-in-out infinite alternate;
}

.liquid-blob.b2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(16,185,129,0.16), rgba(16,185,129,0.05));
    bottom: 10%;
    right: -60px;
    animation: liquidFloat2 20s ease-in-out infinite, liquidMorphB 14s ease-in-out infinite alternate;
}

.liquid-blob.b3 {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(34,197,94,0.14), rgba(34,197,94,0.04));
    top: 40%;
    left: 5%;
    animation: liquidFloat3 22s ease-in-out infinite, liquidMorphC 10s ease-in-out infinite alternate;
}

.liquid-blob.b4 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(16,185,129,0.12), rgba(16,185,129,0.03));
    top: 15%;
    right: 20%;
    animation: liquidFloat4 16s ease-in-out infinite, liquidMorphA 13s ease-in-out infinite alternate;
}

.liquid-blob.b5 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(34,197,94,0.12), rgba(34,197,94,0.03));
    bottom: -80px;
    left: 30%;
    animation: liquidFloat5 24s ease-in-out infinite, liquidMorphB 11s ease-in-out infinite alternate;
}

@keyframes liquidFloat1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(120px, 80px) rotate(15deg); }
    50% { transform: translate(60px, 160px) rotate(5deg); }
    75% { transform: translate(150px, 40px) rotate(20deg); }
}

@keyframes liquidFloat2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-80px, -60px) rotate(-10deg); }
    50% { transform: translate(-140px, -120px) rotate(-5deg); }
    75% { transform: translate(-60px, -80px) rotate(-15deg); }
}

@keyframes liquidFloat3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(60px, -40px) rotate(8deg); }
    50% { transform: translate(-40px, -80px) rotate(-8deg); }
    75% { transform: translate(80px, -20px) rotate(12deg); }
}

@keyframes liquidFloat4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-50px, 40px) rotate(-6deg); }
    50% { transform: translate(-100px, 80px) rotate(-12deg); }
    75% { transform: translate(-30px, 20px) rotate(-3deg); }
}

@keyframes liquidFloat5 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(40px, -60px) rotate(10deg); }
    50% { transform: translate(-60px, -100px) rotate(5deg); }
    75% { transform: translate(80px, -40px) rotate(15deg); }
}

@keyframes liquidMorphA {
    0%   { border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%; }
    25%  { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50%  { border-radius: 30% 70% 60% 40% / 40% 60% 30% 70%; }
    75%  { border-radius: 70% 30% 50% 50% / 30% 70% 50% 50%; }
    100% { border-radius: 40% 60% 40% 60% / 60% 40% 60% 40%; }
}

@keyframes liquidMorphB {
    0%   { border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%; }
    25%  { border-radius: 40% 60% 70% 30% / 50% 40% 60% 50%; }
    50%  { border-radius: 60% 40% 30% 70% / 30% 70% 50% 60%; }
    75%  { border-radius: 30% 70% 50% 50% / 70% 30% 40% 60%; }
    100% { border-radius: 70% 30% 40% 60% / 40% 60% 70% 30%; }
}

@keyframes liquidMorphC {
    0%   { border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%; }
    33%  { border-radius: 55% 45% 65% 35% / 45% 55% 35% 65%; }
    66%  { border-radius: 45% 55% 35% 65% / 55% 45% 65% 35%; }
    100% { border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%; }
}

/* ==========================================
   SECTION HEADING REVEAL ANIMATION
   - clip-path text reveal for all headings
   - Underline bar expansion
   - Fade-up stagger for content
   - ScrollTrigger enter/leave handling
   ========================================== */
.heading-block {
    position: relative;
    padding-bottom: 30px;
    width: 100%;
}

/* Remove bottom margin from headings inside heading-block so
   the heading-line sits close to the text, not far below */
.heading-block h1,
.heading-block h2,
.heading-block h3 {
    margin-bottom: 0 !important;
}

/* Clip-reveal: heading starts hidden, progressively revealed LTR */
.heading-reveal {
    display: inline-block;
    clip-path: inset(0 100% 0 0);
    will-change: clip-path;
}

/* Underline that expands */
.heading-line {
    width: 0%;
    height: 3px;
    opacity: 0;
    transform-origin: left center;
    margin-top: 8px;
    background: linear-gradient(90deg, #fff, rgba(255,255,255,0.15));
    transition: none;
}

.gold-heading + .heading-line {
    background: linear-gradient(90deg, #f3c320, rgba(243,195,32,0.15));
}

/* Fade-up items (content below heading) */
.fade-up-item {
    opacity: 0;
    transform: translateY(24px);
    will-change: transform, opacity;
}

/* Simple heading (no clip-reveal, just fade-up for headings with inner HTML) */
.heading-hidden {
    opacity: 0;
    transform: translateY(20px);
    will-change: transform, opacity;
}

/* ===== PAYMENT MODAL (Homepage) ===== */
.payment-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.payment-overlay.active { display: flex; }
.payment-modal {
    background: #fff;
    border-radius: 24px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    animation: modalIn 0.3s ease;
}
@keyframes modalIn {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.payment-modal .close-modal {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    color: #9ca3af;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}
.payment-modal .close-modal:hover { color: #1a1a2e; }
.payment-modal h2 {
    font-family: 'Saira', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: #1a1a2e;
    margin-bottom: 4px;
    text-transform: uppercase;
}
.payment-modal .modal-product-name {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 2px;
}
.payment-modal .modal-product-price {
    font-family: 'Saira', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #b31919;
    margin-bottom: 20px;
}
.payment-modal .divider {
    height: 1px;
    background: #e5e7eb;
    margin: 20px 0;
}
.payment-modal h3 {
    font-family: 'Saira', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.payment-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.payment-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}
.payment-option:hover { border-color: #b31919; background: rgba(179,25,25,0.02); }
.payment-option .po-left { display: flex; align-items: center; gap: 14px; }
.payment-option .po-icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.9rem;
    color: #fff;
    flex-shrink: 0;
}
.payment-option .po-icon.paystack { background: #0ba37f; }
.payment-option .po-icon.opay { background: #0057b7; }
.payment-option .po-icon.remita { background: #e87a00; }
.payment-option .po-icon.bank { background: #6b7280; }
.payment-option .po-name { font-weight: 700; color: #1a1a2e; font-size: 0.95rem; }
.payment-option .po-desc { font-size: 0.8rem; color: #9ca3af; }
.payment-option .po-arrow { color: #9ca3af; font-size: 1.2rem; }
.payment-detail {
    display: none;
    margin-top: 16px;
}
.payment-detail.active { display: block; }
.payment-detail h4 {
    font-family: 'Saira', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}
.payment-detail p {
    color: #6b7280;
    font-size: 0.85rem;
    margin-bottom: 12px;
}
.payment-detail .detail-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f3f4f6;
}
.payment-detail .detail-row:last-child { border-bottom: none; }
.payment-detail .detail-row .label { color: #9ca3af; font-weight: 500; }
.payment-detail .detail-row .value { color: #1a1a2e; font-weight: 700; }
.payment-detail .btn-pay {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #b31919;
    color: #fff;
    border: none;
    padding: 12px 28px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    margin-top: 14px;
    transition: background 0.2s;
    width: 100%;
    justify-content: center;
}
.payment-detail .btn-pay:hover { background: #941414; }

/* Blur payment details */
.detail-blur-wrap {
    position: relative;
    overflow: hidden;
}
.detail-blur-wrap .detail-blur-content {
    filter: blur(6px);
    -webkit-filter: blur(6px);
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
}
.detail-blur-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 2;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
}
.detail-blur-overlay i {
    font-size: 2rem;
    color: #b31919;
    margin-bottom: 10px;
}
.detail-blur-overlay p {
    font-size: 0.9rem !important;
    color: #374151 !important;
    margin-bottom: 12px !important;
    max-width: 400px;
    line-height: 1.5;
}
.detail-blur-overlay a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #b31919;
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    transition: background 0.2s;
}
.detail-blur-overlay a:hover { background: #941414; }

@media (max-width: 600px) {
    .payment-modal { padding: 24px; }
    .payment-modal h2 { font-size: 1.2rem; }
    .payment-option { padding: 12px 16px; }
}

