/* ===== ROOT VARIABLES ===== */
:root {
    --fire-red: #E63946;
    --fire-orange: #F77F00;
    --fire-yellow: #FCBF49;
    --fire-deep: #D00000;
    --dark-bg: #0a0a0f;
    --dark-card: #111118;
    --dark-surface: #1a1a25;
    --dark-border: rgba(255,255,255,0.08);
    --text-primary: #ffffff;
    --text-secondary: rgba(255,255,255,0.7);
    --text-muted: rgba(255,255,255,0.4);
    --gradient-fire: linear-gradient(135deg, var(--fire-red), var(--fire-orange), var(--fire-yellow));
    --gradient-fire-reverse: linear-gradient(135deg, var(--fire-yellow), var(--fire-orange), var(--fire-red));
    --glow-red: 0 0 30px rgba(230,57,70,0.4);
    --glow-orange: 0 0 30px rgba(247,127,0,0.4);
    --glass-bg: rgba(255,255,255,0.05);
    --glass-border: rgba(255,255,255,0.1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; scroll-padding-top:80px; }
body {
    font-family:'Inter',sans-serif;
    background:var(--dark-bg);
    color:var(--text-primary);
    overflow-x:hidden;
    line-height:1.6;
}
a { text-decoration:none; color:inherit; }
ul { list-style:none; }
img { max-width:100%; display:block; }
.container { max-width:1280px; margin:0 auto; padding:0 20px; }

/* ===== PRELOADER ===== */
#preloader {
    position:fixed; inset:0; z-index:99999;
    background:var(--dark-bg);
    display:flex; align-items:center; justify-content:center;
    transition:opacity .6s, visibility .6s;
}
#preloader.hidden { opacity:0; visibility:hidden; }
.loader-ring {
    width:70px; height:70px; border-radius:50%;
    border:4px solid transparent;
    border-top-color:var(--fire-red);
    border-right-color:var(--fire-orange);
    animation:spin 1s linear infinite;
}
@keyframes spin { to { transform:rotate(360deg); } }

/* ===== NAVBAR ===== */
.navbar {
    position:fixed; top:0; left:0; width:100%; z-index:1000;
    padding:18px 0; transition:all .4s ease;
}
.navbar.scrolled {
    background:rgba(10,10,15,0.95);
    backdrop-filter:blur(20px);
    padding:12px 0;
    box-shadow:0 4px 30px rgba(0,0,0,0.5);
    border-bottom:1px solid var(--dark-border);
}
.nav-inner { display:flex; align-items:center; justify-content:space-between; }
.nav-logo img { height:85px; filter:drop-shadow(0 0 10px rgba(247,127,0,0.3)); transition:transform .3s; }
.nav-logo img:hover { transform:scale(1.05); }
.nav-links { display:flex; gap:32px; align-items:center; }
.nav-links a {
    font-family:'Oswald',sans-serif; font-size:14px; font-weight:500;
    text-transform:uppercase; letter-spacing:2px;
    color:var(--text-secondary); transition:all .3s; position:relative;
}
.nav-links a::after {
    content:''; position:absolute; bottom:-4px; left:0;
    width:0; height:2px; background:var(--gradient-fire);
    transition:width .3s;
}
.nav-links a:hover { color:var(--text-primary); }
.nav-links a:hover::after { width:100%; }
.nav-links a.active { color:var(--fire-orange); }
.nav-links a.active::after { width:100%; }

/* Hamburger */
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; z-index:1001; padding:5px; }
.hamburger span { width:28px; height:2px; background:var(--text-primary); transition:all .3s; border-radius:2px; }
.hamburger.active span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity:0; }
.hamburger.active span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }

/* Mobile Menu */
.mobile-menu {
    display:none; position:fixed; inset:0; z-index:999;
    background:rgba(10,10,15,0.98); backdrop-filter:blur(30px);
    flex-direction:column; align-items:center; justify-content:center; gap:28px;
    opacity:0; transition:opacity .4s;
}
.mobile-menu.active { display:flex; opacity:1; }
.mobile-menu a {
    font-family:'Oswald',sans-serif; font-size:28px; font-weight:600;
    text-transform:uppercase; letter-spacing:3px;
    color:var(--text-secondary); transition:all .3s;
}
.mobile-menu a:hover { color:var(--fire-orange); transform:translateX(10px); }

/* ===== HERO SLIDER SECTION ===== */
.hero-slider-section {
    position: relative;
    background: linear-gradient(135deg, #0b1a38 0%, #030814 100%);
    padding-top: 130px;
    padding-bottom: 60px;
    overflow: hidden;
}
.hero-swiper {
    padding-left: clamp(20px, 5vw, calc((100vw - 1240px) / 2 + 20px)) !important;
    padding-right: 0 !important;
}
.hero-slide {
    width: 85% !important;
    max-width: 1000px;
    margin-right: 24px;
    transition: transform 0.4s;
}
.hero-slide-inner {
    position: relative;
    height: 70vh;
    max-height: 650px;
    min-height: 400px;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}
.hero-slide-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: transform 6s;
}
.swiper-slide-active .hero-slide-inner img {
    transform: scale(1.05);
}
.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,15,0.9) 0%, rgba(10,10,15,0.4) 40%, transparent 100%);
}
.hero-slide-content {
    position: absolute;
    bottom: 50px;
    left: 40px;
    right: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}
.hero-slide-content h2 {
    font-family: 'Inter', sans-serif;
    font-size: clamp(20px, 2.5vw, 32px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.3;
    max-width: 85%;
}
.slide-tag {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #e91e63;
    text-transform: capitalize;
}
.hero-nav-container {
    position: absolute;
    bottom: 40px;
    /* Match swiper's padding left */
    left: clamp(20px, 5vw, calc((100vw - 1240px) / 2 + 20px));
    width: calc(min(85vw, 1000px));
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding-right: 30px;
    z-index: 10;
    pointer-events: none;
}
.hero-prev, .hero-next {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    margin: 0;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    pointer-events: auto;
    cursor: pointer;
    transition: background 0.3s;
}
.hero-prev::after, .hero-next::after {
    display: none;
}
.hero-prev:hover, .hero-next:hover {
    background: rgba(255,255,255,0.25);
}
.hero-prev i, .hero-next i {
    font-size: 14px;
}
@media (max-width: 768px) {
    .hero-slider-section {
        padding-top: 90px;
        padding-bottom: 40px;
    }
    .hero-slide {
        width: 90% !important;
        margin-right: 16px;
    }
    .hero-slide-inner {
        height: 50vh;
    }
    .hero-swiper {
        padding-left: clamp(16px, 4vw, 20px) !important;
    }
    .hero-nav-container {
        left: clamp(16px, 4vw, 20px);
        width: 90vw;
        padding-right: 20px;
        bottom: 20px;
    }
    .hero-slide-content {
        left: 20px;
        right: 20px;
        bottom: 70px;
    }
    .hero-slide-content h2 {
        max-width: 100%;
    }
}

/* Buttons */
.btn-fire {
    font-family:'Oswald',sans-serif; font-size:15px; font-weight:600;
    text-transform:uppercase; letter-spacing:2px;
    padding:16px 40px; border:none; border-radius:4px; cursor:pointer;
    background:var(--gradient-fire); color:#000;
    position:relative; overflow:hidden; transition:all .3s;
    box-shadow:0 4px 25px rgba(247,127,0,0.3);
    display:inline-block;
}
.btn-fire:hover { transform:translateY(-3px); box-shadow:var(--glow-orange); }
.btn-fire::before {
    content:''; position:absolute; inset:0;
    background:linear-gradient(90deg,transparent,rgba(255,255,255,0.3),transparent);
    transform:translateX(-100%); transition:transform .6s;
}
.btn-fire:hover::before { transform:translateX(100%); }
.btn-outline {
    font-family:'Oswald',sans-serif; font-size:15px; font-weight:600;
    text-transform:uppercase; letter-spacing:2px;
    padding:16px 40px; border:2px solid var(--fire-orange); border-radius:4px;
    background:transparent; color:var(--fire-orange); cursor:pointer;
    transition:all .3s; position:relative; overflow:hidden;
    display:inline-block;
}
.btn-outline:hover {
    background:var(--fire-orange); color:#000;
    box-shadow:var(--glow-orange); transform:translateY(-3px);
}

/* ===== SECTION COMMON ===== */
.section { padding:100px 0; position:relative; }
.section-header { text-align:center; margin-bottom:60px; }
.section-label {
    font-family:'Oswald',sans-serif; font-size:14px; font-weight:500;
    text-transform:uppercase; letter-spacing:4px;
    color:var(--fire-orange); margin-bottom:12px;
}
.section-title {
    font-family:'Bebas Neue',sans-serif; font-size:clamp(36px,5vw,56px);
    letter-spacing:3px; text-transform:uppercase; line-height:1.1;
}
.section-title .gradient-text {
    background:var(--gradient-fire); -webkit-background-clip:text;
    -webkit-text-fill-color:transparent; background-clip:text;
}
.section-line {
    width:60px; height:3px; background:var(--gradient-fire);
    margin:16px auto 0; border-radius:2px;
}

/* ===== PLAYERS SLIDER ===== */
.players-section { background:var(--dark-bg); overflow:hidden; }
.player-card {
    position:relative; border-radius:16px; overflow:hidden;
    background:var(--dark-card); border:1px solid var(--dark-border);
    transition:all .5s cubic-bezier(.25,.46,.45,.94);
    cursor:pointer;
}
.player-card:hover {
    transform:translateY(-10px) scale(1.02);
    box-shadow:0 20px 60px rgba(247,127,0,0.2);
    border-color:var(--fire-orange);
}
.player-img {
    width:100%; aspect-ratio:3/4; object-fit:cover;
    transition:transform .6s; filter:grayscale(30%);
}
.player-card:hover .player-img { transform:scale(1.08); filter:grayscale(0); }
.player-overlay {
    position:absolute; bottom:0; left:0; right:0;
    padding:30px 20px 20px;
    background:linear-gradient(transparent, rgba(10,10,15,0.95));
}
.player-name {
    font-family:'Bebas Neue',sans-serif; font-size:26px;
    letter-spacing:2px; text-transform:uppercase;
}
.player-role {
    font-family:'Oswald',sans-serif; font-size:13px;
    letter-spacing:2px; text-transform:uppercase;
    color:var(--fire-orange); margin-top:4px;
}
.player-number {
    position:absolute; top:16px; right:16px;
    font-family:'Bebas Neue',sans-serif; font-size:48px;
    color:rgba(255,255,255,0.08); line-height:1;
}

/* ===== MATCHES ===== */
.matches-section { background:var(--dark-surface); }
.matches-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(340px,1fr)); gap:24px; }
.match-card {
    background:var(--dark-card); border:1px solid var(--dark-border);
    border-radius:16px; padding:32px; position:relative; overflow:hidden;
    transition:all .4s;
}
.match-card::before {
    content:''; position:absolute; top:0; left:0; right:0; height:3px;
    background:var(--gradient-fire); opacity:0; transition:opacity .3s;
}
.match-card:hover { border-color:rgba(247,127,0,0.3); transform:translateY(-5px); }
.match-card:hover::before { opacity:1; }
.match-status {
    display:inline-block; font-family:'Oswald',sans-serif; font-size:11px;
    font-weight:600; text-transform:uppercase; letter-spacing:2px;
    padding:4px 14px; border-radius:20px; margin-bottom:20px;
}
.match-status.upcoming { background:rgba(247,127,0,0.15); color:var(--fire-orange); }
.match-status.live { background:rgba(230,57,70,0.2); color:var(--fire-red); animation:pulse 1.5s infinite; }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:.6; } }
.match-teams {
    display:flex; align-items:center; justify-content:space-between;
    margin-bottom:20px;
}
.match-team { text-align:center; flex:1; }
.match-team-name {
    font-family:'Bebas Neue',sans-serif; font-size:22px;
    letter-spacing:1px; margin-top:8px;
}
.match-vs {
    font-family:'Bebas Neue',sans-serif; font-size:28px;
    color:var(--fire-orange); padding:0 16px;
}
.match-info {
    display:flex; gap:20px; padding-top:16px;
    border-top:1px solid var(--dark-border);
    font-size:13px; color:var(--text-secondary);
}
.match-info i { color:var(--fire-orange); margin-right:6px; }

/* Countdown */
.countdown {
    display:flex; gap:12px; justify-content:center; margin-top:20px;
}
.countdown-item {
    text-align:center; background:rgba(247,127,0,0.08);
    border:1px solid rgba(247,127,0,0.2); border-radius:10px;
    padding:10px 14px; min-width:60px;
}
.countdown-value {
    font-family:'Bebas Neue',sans-serif; font-size:28px;
    color:var(--fire-orange); line-height:1;
}
.countdown-label {
    font-size:10px; text-transform:uppercase; letter-spacing:1px;
    color:var(--text-muted); margin-top:4px;
}

/* ===== NEWS ===== */
.news-section { background:var(--dark-bg); }
.news-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:28px; }
.news-card {
    background:var(--dark-card); border:1px solid var(--dark-border);
    border-radius:16px; overflow:hidden; transition:all .4s;
}
.news-card:hover { transform:translateY(-8px); box-shadow:0 20px 50px rgba(0,0,0,0.4); border-color:rgba(247,127,0,0.2); }
.news-img-wrap { position:relative; overflow:hidden; aspect-ratio:16/10; }
.news-img { width:100%; height:100%; object-fit:cover; transition:transform .6s; }
.news-card:hover .news-img { transform:scale(1.08); }
.news-date {
    position:absolute; bottom:12px; left:12px;
    background:rgba(10,10,15,0.8); backdrop-filter:blur(8px);
    padding:6px 14px; border-radius:20px;
    font-size:12px; color:var(--fire-orange);
    font-family:'Oswald',sans-serif; letter-spacing:1px;
}
.news-body { padding:24px; }
.news-tag {
    font-family:'Oswald',sans-serif; font-size:11px; font-weight:600;
    text-transform:uppercase; letter-spacing:2px;
    color:var(--fire-orange); margin-bottom:10px;
}
.news-title {
    font-family:'Oswald',sans-serif; font-size:20px; font-weight:600;
    line-height:1.3; margin-bottom:10px; transition:color .3s;
}
.news-card:hover .news-title { color:var(--fire-orange); }
.news-desc { font-size:14px; color:var(--text-secondary); line-height:1.6; }

/* ===== GALLERY ===== */
.gallery-section { background:var(--dark-surface); }
.gallery-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    grid-template-rows:repeat(2,250px);
    gap:12px;
}
.gallery-item {
    position:relative; overflow:hidden; border-radius:12px;
    cursor:pointer;
}
.gallery-item:first-child { grid-row:span 2; }
.gallery-item img {
    width:100%; height:100%; object-fit:cover;
    transition:transform .6s; filter:brightness(0.8);
}
.gallery-item:hover img { transform:scale(1.1); filter:brightness(1); }
.gallery-overlay {
    position:absolute; inset:0; background:rgba(10,10,15,0.5);
    display:flex; align-items:center; justify-content:center;
    opacity:0; transition:opacity .3s;
}
.gallery-item:hover .gallery-overlay { opacity:1; }
.gallery-overlay i { font-size:32px; color:var(--text-primary); }

/* Lightbox */
.lightbox {
    display:none; position:fixed; inset:0; z-index:10000;
    background:rgba(0,0,0,0.95); backdrop-filter:blur(10px);
    align-items:center; justify-content:center; padding:40px;
}
.lightbox.active { display:flex; }
.lightbox img { max-width:90%; max-height:85vh; border-radius:12px; object-fit:contain; }
.lightbox-close {
    position:absolute; top:20px; right:30px;
    font-size:36px; color:white; cursor:pointer;
    width:50px; height:50px; display:flex; align-items:center; justify-content:center;
    border-radius:50%; background:rgba(255,255,255,0.1); transition:all .3s;
}
.lightbox-close:hover { background:var(--fire-red); }

/* ===== SPONSORS ===== */
.sponsors-section { background:var(--dark-bg); padding:60px 0; }
.sponsors-track {
    display:flex; gap:60px; align-items:center;
    animation:scrollLogos 20s linear infinite;
    width:max-content;
}
@keyframes scrollLogos {
    0% { transform:translateX(0); }
    100% { transform:translateX(-50%); }
}
.sponsor-logo {
    height:40px; opacity:.4; filter:grayscale(1) brightness(2);
    transition:all .3s; flex-shrink:0;
}
.sponsor-logo:hover { opacity:1; filter:grayscale(0); }

/* ===== CTA SECTION ===== */
.cta-section {
    position:relative; padding:120px 0; overflow:hidden;
    background:url('../images/cta-bg.png') center/cover no-repeat;
}
.cta-section::before {
    content:''; position:absolute; inset:0;
    background:rgba(10,10,15,0.75);
}
.cta-content {
    position:relative; z-index:2; text-align:center; max-width:700px; margin:0 auto;
}
.cta-title {
    font-family:'Bebas Neue',sans-serif; font-size:clamp(40px,6vw,72px);
    line-height:1.05; letter-spacing:3px; margin-bottom:20px;
}
.cta-desc {
    font-size:18px; color:var(--text-secondary);
    margin-bottom:36px; line-height:1.7;
}

/* ===== FOOTER ===== */
.footer {
    background:var(--dark-card); border-top:1px solid var(--dark-border);
    padding:70px 0 0;
}
.footer-grid {
    display:grid; grid-template-columns:2fr 1fr 1fr 1.5fr; gap:40px;
    padding-bottom:50px; border-bottom:1px solid var(--dark-border);
}
.footer-brand p { color:var(--text-secondary); font-size:14px; line-height:1.7; margin-top:16px; }
.footer-logo { height:60px; margin-bottom:10px; }
.footer-title {
    font-family:'Oswald',sans-serif; font-size:16px; font-weight:600;
    text-transform:uppercase; letter-spacing:2px;
    margin-bottom:20px; color:var(--fire-orange);
}
.footer-links li { margin-bottom:10px; }
.footer-links a {
    font-size:14px; color:var(--text-secondary); transition:all .3s;
}
.footer-links a:hover { color:var(--fire-orange); padding-left:6px; }
.footer-contact li {
    display:flex; gap:10px; align-items:flex-start;
    margin-bottom:14px; font-size:14px; color:var(--text-secondary);
}
.footer-contact i { color:var(--fire-orange); margin-top:3px; }
.footer-social { display:flex; gap:12px; margin-top:20px; }
.footer-social a {
    width:40px; height:40px; border-radius:50%;
    background:rgba(255,255,255,0.06); border:1px solid var(--dark-border);
    display:flex; align-items:center; justify-content:center;
    font-size:16px; color:var(--text-secondary); transition:all .3s;
}
.footer-social a:hover {
    background:var(--fire-orange); color:#000;
    border-color:var(--fire-orange); transform:translateY(-3px);
}
.footer-bottom {
    padding:24px 0; text-align:center;
    font-size:13px; color:var(--text-muted);
}

/* ===== SCROLL ANIMATIONS ===== */
[data-aos] { opacity:0; transition:all .7s cubic-bezier(.25,.46,.45,.94); }
[data-aos="fade-up"] { transform:translateY(40px); }
[data-aos="fade-down"] { transform:translateY(-40px); }
[data-aos="fade-right"] { transform:translateX(-40px); }
[data-aos="fade-left"] { transform:translateX(40px); }
[data-aos="zoom-in"] { transform:scale(0.9); }
[data-aos].aos-animate { opacity:1; transform:translate(0) scale(1); }

/* ===== RESPONSIVE ===== */
@media(max-width:1024px) {
    .footer-grid { grid-template-columns:1fr 1fr; }
}
@media(max-width:768px) {
    .nav-links { display:none; }
    .hamburger { display:flex; }
    .hero-logo { width:130px; }
    .hero-buttons { flex-direction:column; align-items:center; }
    .matches-grid { grid-template-columns:1fr; }
    .news-grid { grid-template-columns:1fr; }
    .gallery-grid { grid-template-columns:1fr 1fr; grid-template-rows:repeat(3,200px); }
    .gallery-item:first-child { grid-row:span 1; }
    .footer-grid { grid-template-columns:1fr; text-align:center; }
    .footer-social { justify-content:center; }
    .footer-contact li { justify-content:center; }
    .section { padding:70px 0; }
}
@media(max-width:480px) {
    .gallery-grid { grid-template-columns:1fr; grid-template-rows:auto; }
    .gallery-grid .gallery-item { height:220px; }
    .countdown { gap:8px; }
    .countdown-item { padding:8px 10px; min-width:50px; }
}

/* ===== SWIPER CUSTOM ===== */
.swiper { padding-bottom:50px !important; }
.swiper-pagination-bullet { background:var(--text-muted) !important; opacity:1 !important; }
.swiper-pagination-bullet-active { background:var(--fire-orange) !important; width:24px !important; border-radius:4px !important; }
.swiper-button-next,.swiper-button-prev { color:var(--fire-orange) !important; }
.swiper-button-next::after,.swiper-button-prev::after { font-size:20px !important; }

/* ====================================================
   PAGE-SPECIFIC STYLES
   ==================================================== */

/* ===== PAGE HERO (shared) ===== */
.page-hero {
    position:relative; min-height:50vh; display:flex; align-items:center;
    justify-content:center; background-size:cover; background-position:center;
    padding-top:100px;
}
.page-hero-overlay {
    position:absolute; inset:0;
    background:linear-gradient(to bottom,rgba(10,10,15,.6),rgba(10,10,15,.9));
}
.page-hero-content { position:relative; z-index:2; text-align:center; padding:0 20px; }
.page-hero-title {
    font-family:'Bebas Neue',sans-serif; font-size:clamp(40px,7vw,80px);
    letter-spacing:4px; line-height:1.1; text-transform:uppercase;
}
.page-hero-sub {
    font-family:'Oswald',sans-serif; font-size:clamp(14px,2vw,20px);
    letter-spacing:4px; text-transform:uppercase; color:var(--text-secondary); margin-top:12px;
}

/* ===== FILTER TABS ===== */
.filter-tabs { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin-bottom:40px; }
.filter-btn {
    font-family:'Oswald',sans-serif; font-size:14px; font-weight:500;
    text-transform:uppercase; letter-spacing:2px;
    padding:10px 28px; border:1px solid var(--dark-border); border-radius:30px;
    background:transparent; color:var(--text-secondary); cursor:pointer; transition:all .3s;
}
.filter-btn:hover { border-color:var(--fire-orange); color:var(--fire-orange); }
.filter-btn.active {
    background:var(--gradient-fire); color:#000; border-color:transparent; font-weight:600;
}
@keyframes fadeIn { from{opacity:0;transform:translateY(10px);}to{opacity:1;transform:translateY(0);} }

/* ===== TEAM PAGE ===== */
.team-grid {
    display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:24px;
}
.team-card { cursor:pointer; border-radius:16px; overflow:hidden; }
.team-card-img {
    position:relative; aspect-ratio:3/4; overflow:hidden;
    border-radius:16px; border:1px solid var(--dark-border); transition:all .4s;
}
.team-card:hover .team-card-img { border-color:var(--fire-orange); box-shadow:0 0 30px rgba(247,127,0,.2); }
.team-card-img img { width:100%; height:100%; object-fit:cover; transition:transform .6s; filter:grayscale(20%); }
.team-card:hover .team-card-img img { transform:scale(1.06); filter:grayscale(0); }
.team-card-overlay {
    position:absolute; inset:0; display:flex; flex-direction:column;
    justify-content:flex-end; padding:24px;
    background:linear-gradient(transparent 40%,rgba(10,10,15,.9));
}
.team-card-number {
    position:absolute; top:16px; right:16px;
    font-family:'Bebas Neue',sans-serif; font-size:42px; color:rgba(255,255,255,.08);
}
.team-card-info h3 { font-family:'Bebas Neue',sans-serif; font-size:24px; letter-spacing:2px; }
.team-card-info p { font-family:'Oswald',sans-serif; font-size:13px; color:var(--fire-orange); letter-spacing:1px; text-transform:uppercase; }
.view-profile-btn {
    margin-top:12px; padding:8px 20px; border:1px solid rgba(255,255,255,.2); border-radius:20px;
    background:transparent; color:var(--text-primary); font-family:'Oswald',sans-serif;
    font-size:12px; letter-spacing:1px; text-transform:uppercase; cursor:pointer;
    opacity:0; transform:translateY(10px); transition:all .3s;
}
.team-card:hover .view-profile-btn { opacity:1; transform:translateY(0); }
.view-profile-btn:hover { background:var(--fire-orange); color:#000; border-color:var(--fire-orange); }

/* Player Modal */
.player-modal {
    display:none; position:fixed; inset:0; z-index:10001;
    align-items:center; justify-content:center;
}
.player-modal.active { display:flex; }
.player-modal-backdrop { position:absolute; inset:0; background:rgba(0,0,0,.9); backdrop-filter:blur(10px); }
.player-modal-content {
    position:relative; z-index:2; background:var(--dark-card);
    border:1px solid var(--dark-border); border-radius:20px;
    max-width:800px; width:90%; max-height:90vh; overflow-y:auto;
    animation:modalIn .4s;
}
@keyframes modalIn { from{opacity:0;transform:scale(.9) translateY(20px);}to{opacity:1;transform:scale(1) translateY(0);} }
.player-modal-close {
    position:absolute; top:16px; right:16px; z-index:3;
    width:40px; height:40px; border-radius:50%; border:none;
    background:rgba(255,255,255,.1); color:#fff; font-size:24px;
    cursor:pointer; display:flex; align-items:center; justify-content:center; transition:all .3s;
}
.player-modal-close:hover { background:var(--fire-red); }
.player-modal-grid { display:grid; grid-template-columns:1fr 1fr; }
.player-modal-img { position:relative; }
.player-modal-img img { width:100%; height:100%; object-fit:cover; border-radius:20px 0 0 20px; }
.player-modal-number {
    position:absolute; bottom:20px; right:20px;
    font-family:'Bebas Neue',sans-serif; font-size:60px; color:rgba(255,255,255,.1);
}
.player-modal-info { padding:40px 30px; display:flex; flex-direction:column; justify-content:center; }
.player-modal-info h2 { font-family:'Bebas Neue',sans-serif; font-size:36px; letter-spacing:2px; }
.player-modal-role {
    font-family:'Oswald',sans-serif; font-size:15px; color:var(--fire-orange);
    text-transform:uppercase; letter-spacing:2px; margin-top:4px;
}
.player-modal-stats { display:flex; gap:20px; margin:24px 0; }
.pm-stat {
    text-align:center; padding:12px 16px; background:rgba(247,127,0,.08);
    border:1px solid rgba(247,127,0,.15); border-radius:10px; flex:1;
}
.pm-stat-val { font-family:'Bebas Neue',sans-serif; font-size:28px; color:var(--fire-orange); }
.pm-stat-label { font-size:11px; text-transform:uppercase; letter-spacing:1px; color:var(--text-muted); margin-top:2px; }
.player-modal-bio { color:var(--text-secondary); font-size:14px; line-height:1.7; }
@media(max-width:768px) {
    .player-modal-grid { grid-template-columns:1fr; }
    .player-modal-img img { border-radius:20px 20px 0 0; max-height:300px; }
    .team-grid { grid-template-columns:repeat(auto-fill,minmax(240px,1fr)); }
}

/* Staff Cards */
.staff-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:28px; }
.staff-card {
    background:var(--dark-card); border:1px solid var(--dark-border); border-radius:16px;
    overflow:hidden; transition:all .4s;
}
.staff-card:hover { border-color:rgba(247,127,0,.3); transform:translateY(-5px); }
.staff-card-img { height:280px; overflow:hidden; }
.staff-card-img img { width:100%; height:100%; object-fit:cover; transition:transform .5s; }
.staff-card:hover .staff-card-img img { transform:scale(1.05); }
.staff-card-body { padding:24px; }
.staff-card-body h3 { font-family:'Bebas Neue',sans-serif; font-size:24px; letter-spacing:1px; }
.staff-role { font-family:'Oswald',sans-serif; font-size:13px; color:var(--fire-orange); text-transform:uppercase; letter-spacing:2px; margin:4px 0 12px; }
.staff-desc { font-size:14px; color:var(--text-secondary); line-height:1.6; }

/* ===== MATCHES PAGE ===== */
.next-match-card {
    background:var(--dark-card); border:1px solid var(--dark-border); border-radius:20px;
    padding:50px 40px; position:relative; overflow:hidden;
}
.next-match-card::before {
    content:''; position:absolute; top:0; left:0; right:0; height:4px;
    background:var(--gradient-fire);
}
.next-match-inner { display:flex; align-items:center; justify-content:space-between; gap:30px; flex-wrap:wrap; }
.next-match-team { text-align:center; flex:1; min-width:150px; }
.next-match-team img { width:90px; height:90px; object-fit:contain; margin:0 auto 12px; }
.next-match-team h3 { font-family:'Bebas Neue',sans-serif; font-size:24px; letter-spacing:1px; }
.opp-logo {
    width:90px; height:90px; border-radius:50%; margin:0 auto 12px;
    display:flex; align-items:center; justify-content:center;
    font-family:'Bebas Neue',sans-serif; font-size:32px; color:#fff;
}
.next-match-center { text-align:center; flex:2; min-width:200px; }
.next-match-vs { font-family:'Bebas Neue',sans-serif; font-size:48px; color:var(--fire-orange); }
.next-match-meta { display:flex; flex-wrap:wrap; gap:16px; justify-content:center; margin:12px 0 20px; font-size:14px; color:var(--text-secondary); }
.next-match-meta i { color:var(--fire-orange); margin-right:6px; }

/* Match List Cards */
.matches-list { display:flex; flex-direction:column; gap:16px; }
.match-list-card {
    display:flex; align-items:center; gap:20px; flex-wrap:wrap;
    background:var(--dark-card); border:1px solid var(--dark-border); border-radius:12px;
    padding:20px 28px; transition:all .3s;
}
.match-list-card:hover { border-color:rgba(247,127,0,.3); transform:translateX(5px); }
.mlc-date { text-align:center; min-width:50px; }
.mlc-day { font-family:'Bebas Neue',sans-serif; font-size:32px; display:block; line-height:1; }
.mlc-month { font-family:'Oswald',sans-serif; font-size:12px; text-transform:uppercase; color:var(--fire-orange); letter-spacing:2px; }
.mlc-teams { display:flex; align-items:center; gap:10px; flex:2; font-family:'Oswald',sans-serif; font-size:15px; font-weight:500; }
.mlc-logo { width:30px; height:30px; object-fit:contain; }
.mlc-vs { color:var(--fire-orange); font-weight:700; margin:0 4px; }
.opp-logo-sm {
    width:30px; height:30px; border-radius:50%; display:inline-flex; align-items:center;
    justify-content:center; font-family:'Bebas Neue',sans-serif; font-size:12px; color:#fff; flex-shrink:0;
}
.mlc-info { font-size:13px; color:var(--text-secondary); white-space:nowrap; }
.mlc-info i { color:var(--fire-orange); margin-right:4px; }
.match-badge {
    font-family:'Oswald',sans-serif; font-size:11px; font-weight:600; text-transform:uppercase;
    letter-spacing:1px; padding:4px 14px; border-radius:20px; margin-left:auto;
}
.match-badge.upcoming { background:rgba(247,127,0,.12); color:var(--fire-orange); }

/* Results */
.results-list { display:flex; flex-direction:column; gap:14px; }
.result-card {
    display:flex; align-items:center; gap:20px; flex-wrap:wrap;
    background:var(--dark-card); border:1px solid var(--dark-border); border-radius:12px;
    padding:20px 28px; transition:all .3s;
}
.result-card:hover { transform:translateX(5px); }
.result-card.win { border-left:3px solid #4CAF50; }
.result-card.loss { border-left:3px solid var(--fire-red); }
.result-badge {
    width:36px; height:36px; border-radius:50%; display:flex; align-items:center; justify-content:center;
    font-family:'Bebas Neue',sans-serif; font-size:18px; flex-shrink:0;
}
.result-badge.win { background:rgba(76,175,80,.15); color:#4CAF50; }
.result-badge.loss { background:rgba(230,57,70,.15); color:var(--fire-red); }
.result-teams { display:flex; align-items:center; gap:12px; flex:2; font-family:'Oswald',sans-serif; font-size:15px; }
.result-team { display:flex; align-items:center; gap:8px; }
.result-score {
    font-family:'Bebas Neue',sans-serif; font-size:28px; color:var(--fire-orange);
    padding:0 12px; letter-spacing:2px;
}
.result-meta { font-size:13px; color:var(--text-muted); margin-left:auto; }
@media(max-width:768px) {
    .next-match-inner { flex-direction:column; }
    .match-list-card { flex-direction:column; text-align:center; align-items:center; }
    .mlc-teams { flex-wrap:wrap; justify-content:center; }
    .match-badge { margin:0 auto; }
    .result-card { flex-direction:column; text-align:center; }
    .result-meta { margin:0 auto; }
}

/* ===== GALLERY PAGE ===== */
.gallery-masonry {
    display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:12px;
}
.gm-item {
    position:relative; overflow:hidden; border-radius:12px; cursor:pointer;
    aspect-ratio:4/3;
}
.gm-item img { width:100%; height:100%; object-fit:cover; transition:transform .5s; }
.gm-item:hover img { transform:scale(1.08); }
.gm-overlay {
    position:absolute; inset:0;
    background:linear-gradient(transparent,rgba(10,10,15,.7));
    display:flex; flex-direction:column; align-items:center; justify-content:center; gap:8px;
    opacity:0; transition:opacity .3s;
}
.gm-item:hover .gm-overlay { opacity:1; }
.gm-overlay i { font-size:28px; color:#fff; }
.gm-overlay span { font-size:13px; color:var(--text-secondary); font-family:'Oswald',sans-serif; letter-spacing:1px; }

/* Gallery Lightbox */
.gallery-lightbox {
    display:none; position:fixed; inset:0; z-index:10001;
    align-items:center; justify-content:center;
}
.gallery-lightbox.active { display:flex; }
.gl-backdrop { position:absolute; inset:0; background:rgba(0,0,0,.95); }
.gl-img { position:relative; z-index:2; max-width:90%; max-height:85vh; border-radius:12px; object-fit:contain; }
.gl-close {
    position:absolute; top:20px; right:30px; z-index:3;
    width:50px; height:50px; border-radius:50%; border:none;
    background:rgba(255,255,255,.1); color:#fff; font-size:30px;
    cursor:pointer; display:flex; align-items:center; justify-content:center; transition:all .3s;
}
.gl-close:hover { background:var(--fire-red); }
.gl-nav {
    position:absolute; top:50%; z-index:3; transform:translateY(-50%);
    width:50px; height:50px; border-radius:50%; border:none;
    background:rgba(255,255,255,.1); color:#fff; font-size:18px;
    cursor:pointer; display:flex; align-items:center; justify-content:center; transition:all .3s;
}
.gl-nav:hover { background:rgba(255,255,255,.25); }
.gl-prev { left:20px; }
.gl-next { right:20px; }
.gl-caption {
    position:absolute; bottom:30px; left:50%; transform:translateX(-50%); z-index:3;
    font-family:'Oswald',sans-serif; font-size:16px; color:var(--text-secondary); letter-spacing:2px;
}

/* Video Grid */
.video-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:24px; }
.video-card { cursor:pointer; }
.video-thumb {
    position:relative; border-radius:12px; overflow:hidden; aspect-ratio:16/9;
    border:1px solid var(--dark-border); transition:all .3s;
}
.video-card:hover .video-thumb { border-color:var(--fire-orange); }
.video-thumb img { width:100%; height:100%; object-fit:cover; transition:transform .5s; }
.video-card:hover .video-thumb img { transform:scale(1.05); }
.video-play {
    position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
    width:60px; height:60px; border-radius:50%;
    background:rgba(247,127,0,.85); display:flex; align-items:center; justify-content:center;
    color:#fff; font-size:20px; transition:all .3s;
}
.video-card:hover .video-play { transform:translate(-50%,-50%) scale(1.1); background:var(--fire-red); }
.video-duration {
    position:absolute; bottom:10px; right:10px; padding:3px 10px;
    background:rgba(0,0,0,.7); border-radius:4px;
    font-size:12px; font-family:'Inter',sans-serif; color:#fff;
}
.video-card h4 {
    font-family:'Oswald',sans-serif; font-size:16px; font-weight:500;
    margin-top:12px; transition:color .3s;
}
.video-card:hover h4 { color:var(--fire-orange); }

/* ===== ABOUT PAGE ===== */
.about-intro {
    max-width:800px; margin:0 auto 60px; text-align:center;
    font-size:17px; color:var(--text-secondary); line-height:1.8;
}
.timeline { position:relative; padding:20px 0; }
.timeline::before {
    content:''; position:absolute; left:50%; top:0; bottom:0;
    width:2px; background:var(--dark-border); transform:translateX(-50%);
}
.timeline-item { position:relative; width:50%; padding:20px 40px; }
.timeline-item.left { left:0; text-align:right; }
.timeline-item.right { left:50%; }
.timeline-item::before {
    content:''; position:absolute; top:30px; width:14px; height:14px;
    border-radius:50%; background:var(--fire-orange); border:3px solid var(--dark-bg);
}
.timeline-item.left::before { right:-7px; }
.timeline-item.right::before { left:-7px; }
.timeline-content {
    background:var(--dark-card); border:1px solid var(--dark-border);
    border-radius:12px; padding:24px; transition:all .3s;
}
.timeline-content:hover { border-color:rgba(247,127,0,.3); }
.timeline-year {
    font-family:'Bebas Neue',sans-serif; font-size:32px; color:var(--fire-orange); margin-bottom:8px;
}
.timeline-content h3 { font-family:'Oswald',sans-serif; font-size:18px; font-weight:600; margin-bottom:8px; }
.timeline-content p { font-size:14px; color:var(--text-secondary); line-height:1.6; }
@media(max-width:768px) {
    .timeline::before { left:20px; }
    .timeline-item { width:100%; left:0!important; text-align:left!important; padding-left:50px; padding-right:20px; }
    .timeline-item::before { left:13px!important; right:auto!important; }
}

/* Mission/Vision */
.mv-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:28px; }
.mv-card {
    background:var(--dark-card); border:1px solid var(--dark-border);
    border-radius:16px; padding:36px 28px; text-align:center; transition:all .4s;
}
.mv-card:hover { border-color:rgba(247,127,0,.3); transform:translateY(-5px); }
.mv-icon {
    width:60px; height:60px; border-radius:50%; margin:0 auto 20px;
    background:rgba(247,127,0,.1); display:flex; align-items:center; justify-content:center;
    font-size:24px; color:var(--fire-orange);
}
.mv-card h3 { font-family:'Bebas Neue',sans-serif; font-size:28px; letter-spacing:1px; margin-bottom:12px; }
.mv-card p { font-size:14px; color:var(--text-secondary); line-height:1.7; }

/* Achievements */
.achievements-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:24px; }
.achieve-card {
    background:var(--dark-card); border:1px solid var(--dark-border);
    border-radius:16px; padding:32px 24px; text-align:center; transition:all .4s;
}
.achieve-card:hover { border-color:rgba(247,127,0,.3); transform:translateY(-5px); box-shadow:0 10px 40px rgba(247,127,0,.1); }
.achieve-icon {
    width:64px; height:64px; border-radius:50%; margin:0 auto 16px;
    background:rgba(247,127,0,.1); display:flex; align-items:center; justify-content:center;
    font-size:26px; color:var(--fire-orange);
}
.achieve-card h3 { font-family:'Bebas Neue',sans-serif; font-size:24px; letter-spacing:1px; margin-bottom:8px; }
.achieve-card p { font-size:13px; color:var(--text-secondary); }

/* Training */
.training-grid { display:grid; grid-template-columns:1fr 1fr; gap:50px; align-items:center; }
.training-img { border-radius:16px; overflow:hidden; }
.training-img img { width:100%; border-radius:16px; }
.training-text p { font-size:15px; color:var(--text-secondary); line-height:1.8; margin:16px 0; }
.training-features { margin-top:20px; }
.training-features li {
    display:flex; align-items:center; gap:10px;
    font-size:14px; color:var(--text-secondary); margin-bottom:12px;
}
.training-features i { color:var(--fire-orange); }
@media(max-width:768px) { .training-grid { grid-template-columns:1fr; } }

/* ===== NEWS PAGE ===== */
.featured-news {
    position:relative; border-radius:20px; overflow:hidden; min-height:450px;
    display:flex; align-items:flex-end;
}
.fn-img { position:absolute; inset:0; }
.fn-img img { width:100%; height:100%; object-fit:cover; }
.fn-overlay { position:absolute; inset:0; background:linear-gradient(transparent 30%,rgba(10,10,15,.95)); }
.fn-content { position:relative; z-index:2; padding:40px; max-width:700px; }
.fn-tag {
    display:inline-block; font-family:'Oswald',sans-serif; font-size:12px; font-weight:600;
    text-transform:uppercase; letter-spacing:2px; padding:4px 16px; border-radius:20px;
    background:rgba(247,127,0,.15); color:var(--fire-orange); margin-bottom:16px;
}
.fn-content h2 { font-family:'Oswald',sans-serif; font-size:clamp(22px,3vw,32px); font-weight:700; line-height:1.3; margin-bottom:12px; }
.fn-content p { font-size:15px; color:var(--text-secondary); line-height:1.6; margin-bottom:20px; }
.news-page-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(320px,1fr)); gap:28px; }
.news-readmore {
    display:inline-block; margin-top:10px; font-family:'Oswald',sans-serif; font-size:13px;
    text-transform:uppercase; letter-spacing:1px; color:var(--fire-orange); transition:all .3s;
}
.news-readmore:hover { padding-left:6px; }
.text-center { text-align:center; }

/* ===== CONTACT PAGE ===== */
.contact-grid { display:grid; grid-template-columns:1.2fr 1fr; gap:50px; align-items:start; }
.contact-form-wrap form { display:flex; flex-direction:column; gap:20px; }
.form-group { display:flex; flex-direction:column; gap:6px; }
.form-group label {
    font-family:'Oswald',sans-serif; font-size:13px; font-weight:500;
    text-transform:uppercase; letter-spacing:1px; color:var(--text-secondary);
}
.form-group input,.form-group textarea,.form-group select {
    padding:14px 16px; background:var(--dark-card); border:1px solid var(--dark-border);
    border-radius:10px; color:var(--text-primary); font-family:'Inter',sans-serif; font-size:14px;
    transition:border-color .3s; outline:none;
}
.form-group input:focus,.form-group textarea:focus,.form-group select:focus { border-color:var(--fire-orange); }
.form-group select option { background:var(--dark-card); }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.form-error { font-size:12px; color:var(--fire-red); min-height:16px; }
.contact-info-wrap { display:flex; flex-direction:column; gap:20px; }
.contact-info-card {
    display:flex; gap:16px; align-items:flex-start;
    background:var(--dark-card); border:1px solid var(--dark-border);
    border-radius:12px; padding:20px; transition:all .3s;
}
.contact-info-card:hover { border-color:rgba(247,127,0,.3); }
.ci-icon {
    width:48px; height:48px; border-radius:50%; flex-shrink:0;
    background:rgba(247,127,0,.1); display:flex; align-items:center; justify-content:center;
    font-size:18px; color:var(--fire-orange);
}
.contact-info-card h4 { font-family:'Oswald',sans-serif; font-size:16px; font-weight:600; margin-bottom:4px; }
.contact-info-card p { font-size:14px; color:var(--text-secondary); }
.whatsapp-btn {
    display:flex; align-items:center; justify-content:center; gap:10px;
    padding:14px 24px; background:#25D366; color:#fff; border-radius:10px;
    font-family:'Oswald',sans-serif; font-size:16px; font-weight:600;
    text-transform:uppercase; letter-spacing:1px; transition:all .3s;
}
.whatsapp-btn:hover { background:#1ebe5d; transform:translateY(-2px); box-shadow:0 8px 25px rgba(37,211,102,.3); }
.whatsapp-btn i { font-size:22px; }
.contact-social { margin-top:10px; }
@media(max-width:768px) {
    .contact-grid { grid-template-columns:1fr; }
    .form-row { grid-template-columns:1fr; }
}
