/* ===== RESET & ROOT ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

:root {
    /* --fire: #FF3D00; */
    --fire: #F90304;
    /* --gold: #FFB800; */
    --gold: #c50909;
    --dark: #080A0F;
    --dark2: #0E1118;
    --dark3: #151822;
    --mid: #1E2330;
    --slate: #2A3040;
    --muted: #7d7d7d;
    --light: #C8D0E8;
    --white: #F0F4FF;
    --nav-h: 70px;
}

body {
    background: var(--dark);
    color: var(--white);
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden
}

/* ===== HERO ===== */
#hero {
    min-height: 100vh;
    padding-top: var(--nav-h);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    position: relative
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 65% 70% at 70% 50%, rgba(255, 61, 0, .12) 0%, transparent 60%), radial-gradient(ellipse 40% 40% at 15% 80%, rgba(255, 184, 0, .06) 0%, transparent 50%), linear-gradient(160deg, #080A0F 0%, #0E1118 50%, #0a0c12 100%)
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 61, 0, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 61, 0, .04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%)
}

.hero-number {
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(140px, 26vw, 480px);
    color: rgba(255, 61, 0, .04);
    line-height: 1;
    user-select: none;
    pointer-events: none
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 56px 60px 180px
}

.container-custom {
    max-width: 1380px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 60px !important;
    padding-right: 60px !important;
}

@media (max-width: 992px) {
    .container-custom {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }
}

@media (max-width: 768px) {
    .container-custom {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 61, 0, .1);
    border: 1px solid rgba(255, 61, 0, .3);
    padding: 8px 18px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--fire);
    margin-bottom: 22px;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    animation: fadeInUp .8s ease both
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--fire);
    border-radius: 50%;
    animation: pulse 1.5s infinite
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .5;
        transform: scale(1.4)
    }
}

.hero-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(64px, 11vw, 155px);
    line-height: .9;
    letter-spacing: 2px;
    animation: fadeInUp .8s .1s ease both
}

.hero-title .line2 {
    display: block;
    -webkit-text-stroke: 2px rgba(255, 255, 255, .18);
    color: transparent
}

.hero-title .accent {
    color: var(--fire) !important;
    -webkit-text-stroke: 0
}

.hero-sub {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(16px, 2vw, 19px);
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--muted);
    margin: 20px 0 40px;
    animation: fadeInUp .8s .2s ease both
}

.hero-sub span {
    color: var(--gold)
}

.hero-actions {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
    animation: fadeInUp .8s .3s ease both
}

.accent {
    color: var(--fire) !important;
    -webkit-text-stroke: 0
}

/* Stats bar — inside hero at the very bottom */
.hero-stats-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    display: flex;
    padding: 26px 60px;
    background: rgba(8, 10, 15, .65);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, .05);
    animation: fadeInUp .8s .5s ease both
}

.stat-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 12px;
    position: relative
}

.stat-item+.stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 34px;
    background: rgba(255, 61, 0, .25)
}

.stat-num {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(26px, 3.5vw, 40px);
    color: var(--white);
    line-height: 1
}

.stat-num .unit {
    color: var(--fire)
}

.stat-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 3px
}

/* ===== CURSOR (desktop pointer only) ===== */
@media(pointer:fine) {
    body {
        cursor: none
    }
}

@media(pointer:coarse) {

    .cursor,
    .cursor-ring {
        display: none !important
    }
}

.cursor {
    width: 12px;
    height: 12px;
    background: var(--fire);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 100000;
    transform: translate(-50%, -50%);
    transition: width .3s, height .3s, background .3s;
    mix-blend-mode: multiply
}

.cursor-ring {
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(255, 61, 0, .5);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: all .15s ease
}

.cursor.hover {
    width: 20px;
    height: 20px;
    background: var(--gold)
}

.cursor-ring.hover {
    width: 60px;
    height: 60px;
    border-color: var(--gold)
}

.datepicker.dropdown-menu {
    z-index: 1060 !important;
    /* Above Bootstrap modal (1050) */
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9990;
    opacity: .35
}

/* ===== NAVIGATION ===== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-h);
    z-index: 3100;
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background .4s, border-color .4s, box-shadow .4s
}

#navbar.scrolled {
    background: rgba(8, 10, 15, .96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 61, 0, .15);
    box-shadow: 0 4px 40px rgba(0, 0, 0, .5)
}

#navbar.nav-active {
    background: transparent !important;
    backdrop-filter: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

.nav-logo {
    font-family: 'Bebas Neue', cursive;
    font-size: 30px;
    letter-spacing: 5px;
    color: var(--white);
    text-decoration: none;
    z-index: 901;
    flex-shrink: 0
}

.nav-logo span {
    color: var(--fire)
}

.nav-links {
    display: flex;
    gap: 34px;
    list-style: none;
    align-items: center;
    margin-bottom: 0;
}

.nav-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--light);
    text-decoration: none;
    position: relative;
    transition: color .3s;
    white-space: nowrap
}

/* Dropdown Menu Styles */
.nav-links li.has-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links li.has-dropdown>a {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links li.has-dropdown>a i {
    font-size: 10px;
    transition: transform 0.3s;
}

.nav-links li.has-dropdown:hover>a i {
    transform: rotate(180deg);
}

.dropdown-menu {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    background: rgba(8, 10, 15, 0.98);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 61, 0, 0.2);
    list-style: none;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 2001;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px !important;
    font-size: 14px !important;
    color: var(--light) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    background: rgba(255, 61, 0, 0.1);
    color: var(--fire) !important;
    padding-left: 25px !important;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--fire);
    transition: width .3s ease
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white)
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%
}

.nav-cta {
    background: var(--fire) !important;
    color: var(--white) !important;
    padding: 10px 22px !important;
    font-weight: 700 !important;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%)
}

.nav-cta::after {
    display: none !important
}

.nav-cta:hover {
    background: var(--gold) !important
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: var(--fire);
    border: 1px solid rgba(255, 61, 0, .25);
    cursor: pointer;
    z-index: 901;
    flex-shrink: 0;
    transition: background .3s;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%)
}

.nav-hamburger:hover {
    background: rgba(255, 61, 0, .2)
}

.ham-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform .35s ease, opacity .35s ease, width .35s ease;
    transform-origin: center
}

.nav-hamburger.open .ham-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

.nav-hamburger.open .ham-line:nth-child(2) {
    opacity: 0;
    width: 0
}

.nav-hamburger.open .ham-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

/* Mobile Drawer */
.mobile-drawer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(8, 10, 15, .98);
    backdrop-filter: blur(24px);
    z-index: 3000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 28px 56px;
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.77, 0, .175, 1);
    overflow-y: auto
}

.mobile-drawer.active {
    transform: translateX(0)
}

.drawer-fire-bg {
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(255, 61, 0, .08) 0%, transparent 70%);
    pointer-events: none
}

.mobile-drawer-links {
    list-style: none;
    text-align: center;
    width: 100%;
    margin-bottom: 0px;
    padding-bottom: 15px;
}

.mobile-drawer-links li {
    border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.mobile-drawer-links a {
    display: block;
    font-family: 'Bebas Neue', cursive;
    font-size: 46px;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, .45);
    text-decoration: none;
    padding: 14px 0;
    transition: color .3s, padding-left .3s
}

.mobile-drawer-links a:hover,
.mobile-drawer-links a:active,
.mobile-drawer-links a.active {
    color: var(--fire);
    padding-left: 10px
}

/* Mobile Submenu Styles */
.drawer-has-submenu {
    width: 100%;
}

.drawer-has-submenu .drawer-link {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.drawer-has-submenu .drawer-link i {
    transition: transform 0.3s ease;
}

.drawer-has-submenu.open-menu .drawer-link i {
    transform: rotate(180deg);
}

.drawer-has-submenu.open-menu .drawer-link {
    color: var(--fire);
}

.drawer-submenu {
    list-style: none;
    padding-left: 0;
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), margin 0.3s;
    background: rgba(255, 61, 0, 0.03);
    border-radius: 4px;
}

.drawer-has-submenu.open-menu .drawer-submenu {
    max-height: 500px;
    /* Large enough for submenu */
    margin-top: 10px;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

.drawer-sublink {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--muted);
    text-decoration: none;
    padding: 10px 0;
    transition: color 0.3s;
}

.drawer-sublink:hover,
.drawer-sublink.active {
    color: var(--fire);
}

.mobile-drawer-cta {
    display: block;
    background: var(--fire);
    color: var(--white);
    padding: 17px 44px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
    width: 100%;
    max-width: 300px;
    transition: background .3s
}

.mobile-drawer-cta:hover {
    background: var(--gold)
}

.mobile-drawer-info {
    margin-top: 36px;
    text-align: center;
    color: var(--muted);
    font-size: 15px;
    line-height: 2
}

.mobile-drawer-info a {
    color: var(--fire);
    text-decoration: none
}

/* ===== SHARED ===== */
section {
    position: relative;
    width: 100%
}

.section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--fire);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px
}

.section-label::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--fire);
    flex-shrink: 0
}

.section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(44px, 8vw, 88px);
    line-height: .95;
    letter-spacing: 2px
}

.section-title .outline {
    -webkit-text-stroke: 2px rgba(255, 255, 255, .15);
    color: transparent
}

.btn-primary {
    display: inline-block;
    background: var(--fire);
    color: var(--white);
    padding: 15px 36px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
    transition: background .3s;
    border: none;
    cursor: pointer
}

.btn-primary:hover {
    background: var(--gold)
}

.btn-outline {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, .2);
    color: var(--light);
    padding: 14px 36px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
    transition: border-color .3s, color .3s
}

.btn-outline:hover {
    border-color: var(--fire);
    color: var(--fire)
}

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0)
}

/* ===== HOME ABOUT ===== */
#about {
    padding: 110px 60px;
    background: var(--dark2);
    overflow: hidden
}

.about-inner {
    max-width: 1380px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start
}

.about-tagline {
    font-family: 'Bebas Neue', cursive;
    font-size: 20px;
    letter-spacing: 6px;
    color: var(--gold);
    margin: 26px 0 16px
}

.about-desc {
    font-size: 16px;
    line-height: 1.9;
    color: var(--light);
    opacity: .9;
    max-width: 480px
}

.spark-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px
}

.spark-card {
    background: var(--dark3);
    padding: 26px 22px;
    position: relative;
    overflow: hidden;
    transition: all .35s ease;
    border: 1px solid transparent
}

.spark-card:hover {
    border-color: rgba(255, 61, 0, .2);
    background: var(--mid)
}

.spark-card::before {
    content: attr(data-letter);
    position: absolute;
    right: -8px;
    top: -16px;
    font-family: 'Bebas Neue', cursive;
    font-size: 90px;
    color: rgba(255, 61, 0, .05);
    line-height: 1;
    pointer-events: none
}

.spark-letter {
    font-family: 'Bebas Neue', cursive;
    font-size: 36px;
    color: var(--fire);
    line-height: 1;
    margin-bottom: 4px
}

.spark-word {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px
}

.spark-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--muted)
}

.spark-full {
    grid-column: span 2
}

/* ===== HOME EVENTS ===== */
#events {
    padding: 110px 60px;
    background: var(--white)
}

.events-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 1380px;
    margin: 0 auto 56px;
    gap: 20px;
    flex-wrap: wrap
}

.events-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 260px 260px;
    gap: 3px;
    max-width: 1380px;
    margin: 0 auto
}

.event-card {
    position: relative;
    overflow: hidden;
    background: var(--dark3)
}

.event-card:first-child {
    grid-row: 1/3
}

.event-card-bg {
    position: absolute;
    inset: 0;
    transition: transform .6s ease
}

.event-card:nth-child(1) .event-card-bg {
    background: linear-gradient(135deg, #1a0505, #2d0a0a)
}

.event-card:nth-child(2) .event-card-bg {
    background: linear-gradient(135deg, #0a0a1a, #0d0d25)
}

.event-card:nth-child(3) .event-card-bg {
    background: linear-gradient(135deg, #0a150a, #0d200d)
}

.event-card:nth-child(4) .event-card-bg {
    background: linear-gradient(135deg, #150a1a, #1a0d22)
}

.event-card:nth-child(5) .event-card-bg {
    background: linear-gradient(135deg, #1a1000, #221500)
}

.event-card:hover .event-card-bg {
    transform: scale(1.05)
}

.event-glow {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .4s
}

.event-card:nth-child(1) .event-glow {
    background: radial-gradient(circle at 30% 70%, rgba(255, 61, 0, .15), transparent 60%)
}

.event-card:nth-child(2) .event-glow {
    background: radial-gradient(circle at 70% 30%, rgba(0, 100, 255, .15), transparent 60%)
}

.event-card:nth-child(3) .event-glow {
    background: radial-gradient(circle at 50% 50%, rgba(0, 200, 100, .15), transparent 60%)
}

.event-card:nth-child(4) .event-glow {
    background: radial-gradient(circle at 30% 70%, rgba(150, 0, 255, .15), transparent 60%)
}

.event-card:nth-child(5) .event-glow {
    background: radial-gradient(circle at 70% 30%, rgba(255, 184, 0, .15), transparent 60%)
}

.event-glow:hover {
    opacity: 1
}

.event-card:hover .event-glow {
    opacity: 1
}

.event-pattern {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255, 255, 255, .01) 10px, rgba(255, 255, 255, .01) 11px)
}

.event-content {
    position: absolute;
    inset: 0;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end
}

.event-tag {
    position: absolute;
    top: 18px;
    left: 18px;
    background: rgba(255, 61, 0, .15);
    border: 1px solid rgba(255, 61, 0, .3);
    padding: 4px 12px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--fire)
}

.event-sport-icon {
    font-size: 40px;
    margin-bottom: 8px;
    opacity: .85
}

.event-card:first-child .event-sport-icon {
    font-size: 62px
}

.event-name {
    font-family: 'Bebas Neue', cursive;
    font-size: 24px;
    letter-spacing: 2px;
    line-height: 1;
    color: var(--white);
    margin-bottom: 5px
}

.event-card:first-child .event-name {
    font-size: 42px
}

.event-meta {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--muted);
    margin-bottom: 12px
}

.event-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--fire);
    text-decoration: none;
    transition: gap .3s
}

.event-card:hover .event-cta {
    gap: 14px
}

.event-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--fire);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease
}

.event-card:hover .event-line {
    transform: scaleX(1)
}

/* ===== HOME VISION ===== */
#vision {
    padding: 110px 60px;
    background: var(--dark2);
    overflow: hidden
}

.vision-inner {
    max-width: 1380px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.vision-visual {
    position: relative
}

.vision-big-text {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(90px, 13vw, 190px);
    line-height: .85;
    -webkit-text-stroke: 1px rgba(255, 61, 0, .15);
    color: transparent;
    user-select: none;
    margin-bottom: -36px;
    position: relative;
    z-index: 0
}

.vision-card {
    background: var(--dark3);
    border: 1px solid rgba(255, 61, 0, .1);
    padding: 44px;
    position: relative;
    z-index: 1;
    margin-left: 36px;
    transition: border-color .3s
}

.vision-card:hover {
    border-color: rgba(255, 61, 0, .3)
}

.vision-quote {
    font-family: 'Bebas Neue', cursive;
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 14px
}

.vision-quote span {
    color: var(--fire)
}

.vision-body {
    font-size: 14px;
    line-height: 1.9;
    color: var(--muted)
}


.vision-list {
    margin-top: 32px
}

.vision-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05)
}

.vision-num {
    font-family: 'Bebas Neue', cursive;
    font-size: 32px;
    color: rgba(255, 61, 0, .3);
    line-height: 1;
    flex-shrink: 0;
    width: 36px
}

.vision-item-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 4px
}

.vision-item-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--muted)
}

.vision-btn-wrap {
    margin-top: 32px
}

/* ===== HOME GALLERY ===== */
#gallery {
    padding: 110px 60px;
    background: var(--dark)
}

.gallery-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    max-width: 1380px;
    margin: 0 auto 52px;
    gap: 20px;
    flex-wrap: wrap
}

.gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 200px 200px;
    gap: 3px;
    max-width: 1380px;
    margin: 0 auto
}

.gallery-item {
    overflow: hidden;
    position: relative;
    background: var(--mid)
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2
}

.gallery-item:nth-child(2) {
    grid-column: span 2
}

.gallery-item:nth-child(3) {
    grid-column: span 2
}

.gallery-item:nth-child(4) {
    grid-column: span 1
}

.gallery-item:nth-child(5) {
    grid-column: span 2
}

.gallery-item:nth-child(6) {
    grid-column: span 1
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--mid), var(--slate));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    opacity: .45;
    transition: transform .6s ease, opacity .3s
}

.gallery-item:hover .gallery-placeholder {
    transform: scale(1.1);
    opacity: .75
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(255, 61, 0, .55), transparent);
    opacity: 0;
    transition: opacity .4s;
    display: flex;
    align-items: flex-end;
    padding: 18px
}

.gallery-item:hover .gallery-overlay {
    opacity: 1
}

.gallery-caption {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white)
}

/* ===== PAGE HERO ===== */
.page-hero {
    padding-top: var(--nav-h);
    position: relative;
    overflow: hidden;
    background: var(--dark)
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(255, 61, 0, .1) 0%, transparent 60%), radial-gradient(ellipse 40% 40% at 10% 90%, rgba(255, 184, 0, .05) 0%, transparent 50%), linear-gradient(160deg, #080A0F, #0E1118)
}

.page-hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 61, 0, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 61, 0, .04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 80%, transparent 100%)
}

.page-hero-inner {
    position: relative;
    z-index: 2;
    padding: 80px 60px 90px;
    max-width: 1380px;
    margin: 0 auto
}

.page-breadcrumb {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px
}

.page-breadcrumb a {
    color: var(--muted);
    text-decoration: none;
    transition: color .3s
}

.page-breadcrumb a:hover {
    color: var(--fire)
}

.page-breadcrumb span {
    color: var(--fire)
}

.page-hero-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(64px, 12vw, 150px);
    line-height: .88;
    letter-spacing: 2px;
    animation: fadeInUp .8s ease both
}

.page-hero-title .outline {
    -webkit-text-stroke: 2px rgba(255, 255, 255, .15);
    color: transparent
}

.page-hero-title .accent {
    color: var(--fire)
}

.page-hero-sub {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 20px;
    animation: fadeInUp .8s .15s ease both
}

.page-hero-sub span {
    color: var(--gold)
}

.page-hero-ghost {
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(120px, 20vw, 300px);
    color: rgba(255, 61, 0, .03);
    line-height: 1;
    user-select: none;
    pointer-events: none
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(28px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* ===== MARQUEE ===== */
.marquee-wrap {
    background: var(--fire);
    padding: 13px 0;
    overflow: hidden
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marquee 22s linear infinite
}

.marquee-item {
    font-family: 'Bebas Neue', cursive;
    font-size: 15px;
    letter-spacing: 4px;
    padding: 0 36px;
    color: rgba(255, 255, 255, .92);
    flex-shrink: 0
}

.marquee-dot {
    color: rgba(0, 0, 0, .25);
    padding: 0 8px
}

@keyframes marquee {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* ===== FOOTER ===== */
footer {
    background: var(--dark);
    padding: 76px 60px 38px;
    border-top: 1px solid rgba(255, 255, 255, .05)
}

.footer-inner {
    max-width: 1380px;
    margin: 0 auto
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 52px;
    padding-bottom: 52px;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    margin-bottom: 32px
}

.footer-logo {
    font-family: 'Bebas Neue', cursive;
    font-size: 36px;
    letter-spacing: 6px;
    margin-bottom: 12px
}

.footer-logo span {
    color: var(--fire)
}

.footer-tagline {
    font-size: 15px;
    line-height: 1.8;
    color: var(--muted);
    max-width: 256px;
    margin-bottom: 26px
}

.footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.social-btn {
    width: 38px;
    height: 38px;
    color: var(--white);
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    text-decoration: none;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
    transition: background .3s, border-color .3s
}

.social-btn:hover {
    background: var(--fire);
    border-color: var(--fire)
}

.footer-col h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px
}

.footer-links a {
    font-size: 15px;
    color: var(--muted);
    text-decoration: none;
    transition: color .3s;
    display: flex;
    align-items: center;
    gap: 6px
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--fire);
    transition: width .3s;
    flex-shrink: 0
}

.footer-links a:hover {
    color: var(--fire)
}

.footer-links a:hover::before {
    width: 10px
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px
}

.footer-copy {
    font-size: 15px;
    color: var(--muted)
}

.footer-copy span {
    color: var(--fire)
}

.footer-made {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .1)
}

/* ===================================================
   STORY & ABOUT SECTIONS
=================================================== */
#story,
#values,
#journey,
#team,
#partners {
    padding: 110px 60px
}

#story {
    background: var(--dark2)
}

.story-inner {
    max-width: 1380px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.story-text h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 32px;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--white)
}

.story-text p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--muted);
    margin-bottom: 20px
}

.story-visual {
    position: relative;
    background: var(--mid);
    aspect-ratio: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', cursive;
    font-size: 120px;
    color: rgba(255, 61, 0, .05);
    clip-path: polygon(40px 0%, 100% 0%, calc(100% - 40px) 100%, 0% 100%)
}

/* VALUES */
#values {
    background: var(--dark)
}

.values-inner {
    max-width: 1380px;
    margin: 0 auto
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px
}

.value-card {
    background: var(--dark3);
    padding: 40px 28px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
    overflow: hidden;
    transition: all .4s
}

.value-card:hover {
    border-color: rgba(255, 61, 0, .3);
    transform: translateY(-6px)
}

.value-card[data-letter]::before {
    content: attr(data-letter);
    position: absolute;
    right: -10px;
    bottom: -10px;
    font-family: 'Bebas Neue', cursive;
    font-size: 120px;
    color: rgba(255, 61, 0, 0.03);
    line-height: 1
}

.value-letter {
    font-family: 'Bebas Neue', cursive;
    font-size: 48px;
    color: var(--fire);
    margin-bottom: 12px;
    line-height: 1
}

.value-word {
    font-family: 'Bebas Neue', cursive;
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 12px
}

.value-desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--muted)
}

/* JOURNEY */
#journey {
    background: var(--dark2)
}

.journey-inner {
    max-width: 1380px;
    margin: 0 auto
}

.journey-timeline {
    position: relative;
    padding: 40px 0
}

.journey-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(255, 61, 0, .3), transparent)
}

.journey-item {
    position: relative;
    padding-left: 44px;
    margin-bottom: 56px
}

.journey-item::before {
    content: '';
    position: absolute;
    left: -4px;
    top: 0;
    width: 9px;
    height: 9px;
    background: var(--fire);
    box-shadow: 0 0 15px var(--fire);
    border-radius: 50%
}

.journey-year {
    font-family: 'Bebas Neue', cursive;
    font-size: 36px;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px
}

.journey-year span {
    color: var(--fire)
}

.journey-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px
}

.journey-desc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--muted);
    max-width: 600px
}

/* TEAM */
#team {
    background: var(--dark)
}

.team-inner {
    max-width: 1380px;
    margin: 0 auto
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px
}

.team-card {
    background: var(--dark3);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all .4s;
    position: relative;
    overflow: hidden
}

.team-card:hover {
    border-color: rgba(255, 61, 0, .2);
    transform: translateY(-6px)
}

.team-img-wrap {
    height: 240px;
    background: var(--mid);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center
}

.team-avatar {
    width: 200px;
    height: 200px;
    overflow: hidden;
    border-radius: 50%;
    background: linear-gradient(135deg, #bababa, #efefef);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', cursive;
    font-size: 44px;
    color: var(--white)
}

.team-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--dark3), transparent 60%)
}

.team-info {
    padding: 10px 28px 28px;
    text-align: center;
}

.team-name {
    font-family: 'Bebas Neue', cursive;
    font-size: 24px;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 4px;
}

.team-role {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--fire)
}

.team-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--fire);
    transition: width .5s
}

.team-card:hover .team-accent {
    width: 100%
}

/* PARTNERS */
#partners {
    background: var(--dark2);
    text-align: center
}

.partners-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.15);
    margin-bottom: 44px
}

.partners-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center
}

.partner-item {
    font-family: 'Bebas Neue', cursive;
    font-size: 32px;
    letter-spacing: 6px;
    color: rgba(255, 255, 255, .1);
    transition: color .3s;
    text-decoration: none
}

.partner-item:hover {
    color: var(--white)
}

/* ===================================================
   ACADEMY SECTIONS
=================================================== */
#programs,
#coaches,
#how,
#academy-cta {
    padding: 110px 60px
}

#programs {
    background: var(--dark)
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px
}

.prog-card {
    background: var(--dark3);
    padding: 40px 32px;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    transition: all .4s
}

.prog-card:hover {
    border-color: rgba(255, 61, 0, .2);
    transform: translateY(-4px)
}

.prog-card::before {
    content: attr(data-bg);
    position: absolute;
    right: -10px;
    top: -10px;
    font-size: 120px;
    opacity: .04;
    line-height: 1;
    pointer-events: none
}

.prog-icon {
    font-size: 52px;
    margin-bottom: 18px;
    line-height: 1
}

.prog-name {
    font-family: 'Bebas Neue', cursive;
    font-size: 32px;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 10px
}

.prog-tag {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(255, 184, 0, .1);
    border: 1px solid rgba(255, 184, 0, .25);
    color: var(--gold);
    padding: 6px 14px;
    margin-bottom: 18px
}

.prog-desc {
    font-size: 16px;
    line-height: 1.8;
    color: var(--muted);
    margin-bottom: 5px
}

.prog-features {
    list-style: none;
    margin-bottom: 28px
}

.prog-features li {
    font-size: 15px;
    color: var(--light);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .04);
    display: flex;
    align-items: center;
    gap: 10px
}

/* .prog-features li::before {
    content: '✦';
    color: var(--gold);
    font-size: 9px;
    flex-shrink: 0
} */

.prog-cta {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap .3s
}

.prog-cta:hover {
    gap: 14px
}

.prog-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--gold), var(--fire));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s
}

.prog-card:hover .prog-bar {
    transform: scaleX(1)
}

#coaches {
    background: var(--dark2)
}

.coaches-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px
}

.coach-card {
    background: var(--dark3);
    border: 1px solid rgba(255, 255, 255, .04);
    transition: all .4s;
    position: relative;
    overflow: hidden
}

.coach-card:hover {
    border-color: rgba(255, 61, 0, .2);
    transform: translateY(-6px)
}

.coach-img {
    height: 200px;
    background: var(--mid);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.coach-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--fire));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', cursive;
    font-size: 28px;
    color: var(--white)
}

.coach-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--dark3), transparent 50%)
}

.coach-info {
    padding: 20px 22px 24px
}

.coach-name {
    font-family: 'Bebas Neue', cursive;
    font-size: 20px;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 4px
}

.coach-sport {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold)
}

#how {
    background: var(--dark)
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px
}

.step-card {
    background: var(--dark3);
    padding: 36px 28px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, .04);
    transition: border-color .3s
}

.step-card:hover {
    border-color: rgba(255, 61, 0, .2)
}

.step-num {
    font-family: 'Bebas Neue', cursive;
    font-size: 72px;
    color: rgba(255, 61, 0, .1);
    line-height: 1;
    margin-bottom: 12px;
    transition: color .3s
}

.step-card:hover .step-num {
    color: rgba(255, 61, 0, .2)
}

.step-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 24px;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 10px
}

.step-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--muted)
}

.step-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--fire);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s
}

.step-card:hover .step-bar {
    transform: scaleX(1)
}

#academy-cta {
    background: var(--dark2);
    position: relative;
    overflow: hidden;
    text-align: center
}

.academy-cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 100% at 50% 50%, rgba(255, 184, 0, .05), transparent)
}

.academy-cta-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(52px, 8vw, 100px);
    line-height: .9;
    letter-spacing: 2px;
    margin-bottom: 24px
}

.academy-cta-title span {
    color: var(--gold)
}

.academy-cta-text {
    font-size: 16px;
    line-height: 1.9;
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto 44px
}

.academy-cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap
}

/* ===================================================
   TABLET — ≤1024px
=================================================== */
@media(max-width:1024px) {
    #navbar {
        padding: 0 32px
    }

    #navbar.scrolled {
        padding: 0 32px
    }

    .nav-links {
        gap: 20px
    }

    .hero-content {
        padding: 48px 32px 180px
    }

    .hero-stats-bar {
        padding: 22px 32px
    }

    #about,
    #events,
    #vision,
    #team,
    #gallery,
    #contact {
        padding-left: 32px;
        padding-right: 32px
    }

    #partners,
    footer {
        padding-left: 32px;
        padding-right: 32px
    }

    .events-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 300px 220px 220px
    }

    .event-card:first-child {
        grid-column: span 2;
        grid-row: 1
    }

    .vision-inner {
        gap: 52px
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px
    }

    .page-hero-inner {
        padding: 70px 32px 80px
    }
}

/* ===================================================
   MOBILE — ≤768px
 =================================================== */
@media(max-width:768px) {
    :root {
        --nav-h: 64px
    }

    #navbar {
        padding: 0 20px;
        height: 64px
    }

    #navbar.scrolled {
        padding: 0 20px
    }

    .nav-logo {
        font-size: 26px;
        letter-spacing: 4px
    }

    .nav-links {
        display: none
    }

    .nav-hamburger {
        display: flex
    }

    .mobile-drawer {
        display: flex
    }

    /* HERO */
    #hero {
        min-height: 100svh
    }

    .hero-content {
        padding: 36px 20px 220px
    }

    .hero-number {
        font-size: 140px;
        right: -8px
    }

    .hero-title {
        font-size: clamp(52px, 14vw, 68px)
    }

    .hero-title .line2 {
        -webkit-text-stroke: 1.5px rgba(255, 255, 255, .18)
    }

    .hero-sub {
        font-size: 12px;
        letter-spacing: 3px;
        margin: 16px 0 32px
    }

    .hero-badge {
        font-size: 10px
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-outline {
        text-align: center;
        padding: 15px 20px
    }

    .hero-stats-bar {
        padding: 16px 20px;
        flex-wrap: wrap
    }

    .stat-item {
        flex: 0 0 50%;
        padding: 10px 8px
    }

    .stat-item+.stat-item::before {
        display: none
    }

    .stat-item:nth-child(2) {
        border-left: 1px solid rgba(255, 61, 0, .2)
    }

    .stat-item:nth-child(4) {
        border-left: 1px solid rgba(255, 61, 0, .2)
    }

    .stat-num {
        font-size: 26px
    }

    /* SECTIONS */
    #about,
    #events,
    #vision,
    #team,
    #gallery,
    #contact {
        padding: 76px 20px
    }

    #partners {
        padding: 60px 20px
    }

    footer {
        padding: 60px 20px 34px
    }

    .section-title {
        font-size: clamp(38px, 11vw, 56px)
    }

    /* ABOUT */
    .about-inner {
        grid-template-columns: 1fr;
        gap: 44px
    }

    .about-desc {
        max-width: 100%
    }

    .spark-grid {
        grid-template-columns: 1fr
    }

    .spark-full {
        grid-column: span 1
    }

    /* EVENTS */
    .events-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 28px
    }

    .events-header .btn-outline {
        align-self: stretch;
        text-align: center
    }

    .events-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: 3px
    }

    .event-card {
        height: 210px
    }

    .event-card:first-child {
        grid-column: span 1;
        grid-row: span 1;
        height: 270px
    }

    .event-card:first-child .event-name {
        font-size: 32px
    }

    .event-card:first-child .event-sport-icon {
        font-size: 44px
    }

    /* VISION */
    .vision-inner {
        grid-template-columns: 1fr;
        gap: 0
    }

    .vision-big-text {
        font-size: clamp(80px, 22vw, 120px);
        margin-bottom: -10px
    }

    .vision-card {
        margin-left: 0;
        padding: 30px 24px
    }

    .vision-quote {
        font-size: 32px
    }

    .vision-btn-wrap {
        margin-top: 26px
    }

    .vision-btn-wrap .btn-primary {
        display: block;
        text-align: center
    }

    /* TEAM */
    .team-header {
        margin-bottom: 44px
    }

    .team-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px
    }

    .team-card {
        flex: 0 0 auto;
        width: 100%;
        max-width: 340px
    }

    /* PARTNERS */
    .partners-row {
        gap: 10px
    }

    .partner-item {
        font-size: 16px;
        padding: 10px 18px
    }

    /* GALLERY */
    .gallery-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        margin-bottom: 28px
    }

    .gallery-header .btn-outline {
        align-self: stretch;
        text-align: center
    }

    .gallery-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 155px 155px 155px;
        gap: 3px
    }

    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1
    }

    .gallery-item:nth-child(2) {
        grid-column: span 1
    }

    .gallery-item:nth-child(3) {
        grid-column: span 1
    }

    .gallery-item:nth-child(4) {
        grid-column: span 1
    }

    .gallery-item:nth-child(5) {
        grid-column: span 1
    }

    .gallery-item:nth-child(6) {
        grid-column: span 2
    }

    .gallery-placeholder {
        font-size: 24px
    }

    /* CONTACT */
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 44px
    }

    .contact-big {
        font-size: clamp(48px, 14vw, 64px)
    }

    .contact-desc {
        max-width: 100%
    }

    .contact-form-wrap {
        padding: 26px 18px
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0
    }

    /* FOOTER */
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 32px
    }

    .footer-tagline {
        max-width: 100%
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px
    }
}

/* ===================================================
   SMALL MOBILE — ≤480px
 =================================================== */
@media(max-width:480px) {
    .hero-title {
        font-size: 50px
    }

    .contact-big {
        font-size: 46px
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .mobile-drawer-links a {
        font-size: 24px
    }

    .partner-item {
        width: 100%;
        max-width: 240px;
        text-align: center
    }
}

/* ===================================================
   MOBILE — ≤768px
=================================================== */
/* ===================================================
   CONTACT SECTIONS
=================================================== */
/* QUICK CONTACT CARDS */
#quick-contact {
    padding: 80px 60px;
    background: var(--dark2)
}

.qc-inner {
    max-width: 1380px;
    margin: 0 auto
}

.qc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    margin-top: 48px
}

.qc-card {
    background: var(--dark3);
    padding: 40px 32px;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    transition: all .4s;
    text-decoration: none;
    display: block
}

.qc-card:hover {
    border-color: rgba(255, 61, 0, .25);
    transform: translateY(-4px)
}

.qc-icon {
    font-size: 44px;
    margin-bottom: 16px
}

.qc-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--fire);
    margin-bottom: 8px
}

.qc-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 26px;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 10px
}

.qc-value {
    font-size: 16px;
    line-height: 1.8;
    color: var(--light)
}

.qc-cta {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--fire);
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap .3s
}

.qc-card:hover .qc-cta {
    gap: 12px
}

.qc-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--fire);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s
}

.qc-card:hover .qc-bar {
    transform: scaleX(1)
}

/* MAIN CONTACT SECTION */
#contact-main {
    padding: 110px 60px;
    background: var(--dark)
}

.contact-inner {
    max-width: 1380px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start
}

.contact-big {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(52px, 7.5vw, 104px);
    line-height: .9;
    margin-bottom: 22px
}

.contact-big span {
    color: var(--fire)
}

.contact-desc {
    font-size: 18px;
    line-height: 1.9;
    color: var(--muted);
    margin-bottom: 44px;
    max-width: 440px
}

.contact-details-grid {
    display: flex;
    flex-direction: column;
    gap: 3px
}

.contact-det {
    background: #ffffff;
    padding: 24px 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    border: 1px solid #f0f0f0;
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    margin-bottom: 2px;
}

.contact-det:hover {
    border-color: var(--fire);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateX(5px);
}

.contact-det-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: #fff5f2;
    border: 1px solid rgba(255, 61, 0, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--fire);
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
    transition: all .3s;
}

.contact-det:hover .contact-det-icon {
    background: var(--fire);
    color: #fff;
}

.contact-det-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #080a0f;
    margin-bottom: 4px;
    opacity: 0.9;
}

.contact-det-val {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    font-weight: 500;
}

.contact-det-val a {
    color: inherit;
    text-decoration: none;
    transition: color .3s;
}

.contact-det-val a:hover {
    color: var(--fire);
}

.social-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 28px
}

.social-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
    padding: 10px 18px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: all .3s;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%)
}

.social-pill:hover {
    background: rgba(255, 61, 0, .1);
    border-color: rgba(255, 61, 0, .3);
    color: var(--fire)
}

/* FORM */
.contact-form-wrap {
    background: var(--dark3);
    padding: 52px 44px;
    border: 1px solid rgba(255, 255, 255, .05)
}

.form-head {
    margin-bottom: 32px
}

.form-head-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 34px;
    letter-spacing: 2px;
    margin-bottom: 6px
}

.form-head-sub {
    font-size: 15px;
    color: var(--muted)
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

.form-group {
    margin-bottom: 20px
}

.form-group label {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 7px
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: var(--mid);
    border: 1px solid rgba(255, 255, 255, .07);
    color: var(--white);
    padding: 14px 18px;
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    outline: none;
    transition: border-color .3s;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 0
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: rgba(255, 61, 0, .5)
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(107, 117, 144, .5)
}

.form-group textarea {
    height: 120px;
    resize: none
}

/* Common Custom Form Styles */
.form-label {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
    margin-bottom: 8px;
}

.form-control-custom {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 18px;
    color: var(--white);
    border-radius: 3px;
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    transition: all 0.3s;
}

.form-control-custom:focus {
    outline: none;
    border-color: var(--fire);
    background: rgba(255, 255, 255, 0.08);
}

.btn-submit {
    background: var(--fire);
    color: var(--white);
    border: none;
    padding: 16px 30px;
    font-family: 'Bebas Neue', cursive;
    font-size: 20px;
    letter-spacing: 1px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    background: #e63700;
    transform: translateY(-2px);
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px
}

.form-check input[type=checkbox] {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    accent-color: var(--fire);
    margin-top: 2px;
    cursor: pointer
}

.form-check label {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.6;
    cursor: pointer
}

.form-check label a {
    color: var(--fire);
    text-decoration: none
}

.form-submit {
    width: 100%;
    background: var(--fire);
    color: var(--white);
    padding: 18px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background .3s;
    position: relative;
    overflow: hidden
}

.form-submit:hover {
    background: var(--gold)
}

.form-success {
    display: none;
    background: rgba(0, 200, 100, .08);
    border: 1px solid rgba(0, 200, 100, .25);
    padding: 20px 24px;
    text-align: center;
    margin-top: 20px
}

.form-success-icon {
    font-size: 32px;
    margin-bottom: 8px
}

.form-success-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 22px;
    letter-spacing: 2px;
    margin-bottom: 6px
}

.form-success-text {
    font-size: 15px;
    color: var(--muted)
}

/* MAP */
#map-section {
    padding: 0;
    background: var(--dark2)
}

.map-wrap {
    max-width: 1380px;
    margin: 0 auto;
    padding: 80px 60px
}

.map-header {
    margin-bottom: 40px
}

.map-placeholder {
    background: var(--dark3);
    height: 360px;
    border: 1px solid rgba(255, 255, 255, .05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
    overflow: hidden
}

.map-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 61, 0, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 61, 0, .03) 1px, transparent 1px);
    background-size: 40px 40px
}

.map-pin {
    font-size: 52px;
    position: relative;
    z-index: 1
}

.map-text {
    font-family: 'Bebas Neue', cursive;
    font-size: 22px;
    letter-spacing: 3px;
    color: var(--muted);
    position: relative;
    z-index: 1
}

.map-address {
    font-size: 15px;
    color: var(--muted);
    text-align: center;
    max-width: 400px;
    line-height: 1.7;
    position: relative;
    z-index: 1
}

.map-btn {
    display: inline-block;
    background: var(--fire);
    color: var(--white);
    padding: 12px 28px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    transition: background .3s;
    position: relative;
    z-index: 1
}

.map-btn:hover {
    background: var(--gold)
}

/* FAQ */
#faq {
    padding: 110px 60px;
    background: var(--dark)
}

.faq-inner {
    max-width: 1380px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start
}

.faq-list {
    margin-top: 8px
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    overflow: hidden;
    padding: 10px 30px;
    background: white;
    margin-bottom: 15px;
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    cursor: pointer;
    gap: 16px;
    user-select: none
}

.faq-q-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color .3s
}

.faq-item.open .faq-q-text {
    color: var(--fire)
}

.faq-icon {
    font-family: 'Bebas Neue', cursive;
    font-size: 24px;
    color: var(--fire);
    flex-shrink: 0;
    transition: transform .3s
}

.faq-item.open .faq-icon {
    transform: rotate(45deg)
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .4s ease
}

.faq-a-inner {
    font-size: 14px;
    line-height: 1.9;
    color: var(--muted);
    padding-bottom: 20px
}

.faq-item.open .faq-a {
    max-height: 200px
}

/* ===================================================
   EVENTS SECTIONS
=================================================== */
/* FILTER BAR */
#filter-bar {
    background: var(--dark2);
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    padding: 20px 60px;
    position: sticky;
    top: var(--nav-h);
    z-index: 100
}

.filter-inner {
    max-width: 1380px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap
}

.filter-btn {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .08);
    padding: 9px 20px;
    cursor: pointer;
    transition: all .3s;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%)
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--fire);
    border-color: var(--fire);
    color: var(--white)
}

/* EVENTS GRID */
#events {
    padding: 80px 60px;
    background: var(--white)
}

.events-inner {
    max-width: 1380px;
    margin: 0 auto
}

.events-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 20px
}

.events-big-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px
}

/* ===== THEME SEPARATOR ===== */
.theme-separator {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 61, 0, 0.2) 20%, rgba(255, 61, 0, 0.2) 80%, transparent);
    position: relative;
    margin: 100px 0;
    opacity: 0.6;
}

.theme-separator::after {
    content: '✦';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #080A0F;
    padding: 0 30px;
    color: var(--fire);
    font-size: 18px;
    filter: drop-shadow(0 0 10px rgba(255, 61, 0, 0.5));
}

.ev-card {
    position: relative;
    overflow: hidden;
    background: var(--dark3);
    border: 1px solid transparent;
    transition: border-color .4s
}

.ev-card:hover {
    border-color: rgba(255, 61, 0, .25)
}

.ev-card-inner {
    padding: 30px;
    position: relative;
    z-index: 1
}

.ev-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--dark);
}

.ev-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.ev-card:hover .ev-card-img img {
    transform: scale(1.1);
}

.ev-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(8, 10, 15, 0.8));
    opacity: 0;
    transition: opacity .4s;
}

.ev-card:hover .ev-card-img::after {
    opacity: 1;
}

.ev-pattern {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(255, 255, 255, .01) 12px, rgba(255, 255, 255, .01) 13px)
}

.ev-sport-icon {
    font-size: 52px;
    margin-bottom: 18px;
    line-height: 1
}

.ev-status {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 2px;
}

.ev-status.open {
    background: rgba(0, 200, 100, .1);
    border: 1px solid rgba(0, 200, 100, .3);
    color: #00c864
}

.ev-status.ongoing {
    background: rgba(255, 184, 0, .1);
    border: 1px solid rgba(255, 184, 0, .3);
    color: var(--gold)
}

.ev-status.upcoming {
    background: rgba(255, 61, 0, .1);
    border: 1px solid rgba(255, 61, 0, .3);
    color: var(--fire)
}

.ev-name {
    font-family: 'Bebas Neue', cursive;
    font-size: 34px;
    letter-spacing: 2px;
    color: var(--white);
    line-height: 1;
    margin-bottom: 10px
}

.ev-meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 24px
}

.ev-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ccc;
    font-size: 13px;
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 0.5px;
}

.ev-meta-item i {
    width: 20px;
    color: var(--fire);
    font-size: 14px;
    text-align: center;
}


.ev-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .06)
}

.ev-spots {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    letter-spacing: 1px;
    color: #ccc;
}

.ev-spots strong {
    color: var(--fire);
    font-weight: 700
}

.ev-cta {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--fire);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap .3s
}

.ev-cta:hover {
    gap: 12px
}

.ev-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--fire), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s
}

.ev-card:hover .ev-line {
    transform: scaleX(1)
}

/* CTA BAND */
#cta-band {
    padding: 90px 60px;
    background: var(--dark);
    position: relative;
    overflow: hidden
}

.cta-band-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(255, 61, 0, .07), transparent)
}

.cta-band-inner {
    max-width: 1380px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1
}

.cta-band-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(44px, 6vw, 76px);
    line-height: .95;
    letter-spacing: 2px
}

.cta-band-title span {
    color: var(--fire)
}

.cta-band-text {
    font-size: 15px;
    line-height: 1.9;
    color: var(--muted);
    margin: 20px 0 36px
}

.cta-band-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

.cta-band-right {
    text-align: right
}

.cta-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px
}

.cta-stat {
    background: var(--dark3);
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .05)
}

.cta-stat-num {
    font-family: 'Bebas Neue', cursive;
    font-size: 44px;
    color: var(--white);
    line-height: 1
}

.cta-stat-num span {
    color: var(--fire)
}

.cta-stat-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 4px
}

/* ===================================================
   GALLERY SECTIONS
=================================================== */
/* FILTER */
#gal-filter {
    background: var(--dark2);
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    padding: 20px 60px
}

.gal-filter-inner {
    max-width: 1380px;
    margin: 0 auto;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center
}

.gal-filter-btn {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .08);
    padding: 9px 20px;
    cursor: pointer;
    transition: all .3s;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%)
}

.gal-filter-btn:hover,
.gal-filter-btn.active {
    background: var(--fire);
    border-color: var(--fire);
    color: var(--white)
}

/* MASONRY GALLERY */
#gallery {
    padding: 80px 60px;
    background: var(--dark2)
}

.gallery-inner {
    max-width: 1380px;
    margin: 0 auto
}

.gallery-section-header {
    margin-bottom: 48px
}

.masonry {
    column-count: 3;
    column-gap: 3px
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 3px;
    position: relative;
    overflow: hidden;
    background: var(--mid);
    cursor: pointer;
    display: block
}

.masonry-placeholder {
    width: 100%;
    display: block;
    background: linear-gradient(135deg, var(--mid), var(--slate));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .5s ease
}

.masonry-placeholder.tall {
    height: 320px
}

.masonry-placeholder.medium {
    height: 220px
}

.masonry-placeholder.short {
    height: 160px
}

.masonry-placeholder .gi-icon {
    font-size: 40px;
    opacity: .3;
    transition: opacity .3s, transform .3s
}

.masonry-item:hover .masonry-placeholder {
    transform: scale(1.06)
}

.masonry-item:hover .gi-icon {
    opacity: .8;
    transform: scale(1.1)
}

.masonry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(255, 61, 0, .65) 0%, transparent 50%);
    opacity: 0;
    transition: opacity .4s;
    display: flex;
    align-items: flex-end;
    padding: 20px
}

.masonry-item:hover .masonry-overlay {
    opacity: 1
}

.masonry-caption {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white)
}

.masonry-item.hidden {
    display: none
}

/* LIGHTBOX */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .95);
    z-index: 9000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px
}

.lightbox.open {
    display: flex
}

.lightbox-content {
    position: relative;
    max-width: 800px;
    width: 100%;
    background: var(--dark3);
    border: 1px solid rgba(255, 61, 0, .2)
}

.lightbox-img {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--mid), var(--slate));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px
}

.lightbox-info {
    padding: 24px 28px
}

.lightbox-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 28px;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 6px
}

.lightbox-meta {
    font-size: 15px;
    color: var(--muted)
}

.lightbox-close {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 40px;
    height: 40px;
    background: var(--fire);
    border: none;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
    transition: background .3s
}

.lightbox-close:hover {
    background: var(--gold)
}

.lightbox-nav {
    display: flex;
    justify-content: space-between;
    padding: 0 28px 24px
}

.lightbox-nav-btn {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--fire);
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    transition: gap .3s
}

.lightbox-nav-btn:hover {
    gap: 12px
}

/* ===================================================
   RESPONSIVE OVERRIDES (Remaining)
=================================================== */
@media(max-width:1024px) {

    .page-hero-inner,
    #quick-contact,
    #contact-main,
    .map-wrap,
    #faq,
    #filter-bar,
    #events,
    #cta-band,
    #gal-filter,
    #gallery {
        padding-left: 32px;
        padding-right: 32px
    }

    .qc-grid {
        grid-template-columns: 1fr 1fr
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 56px
    }

    .faq-inner {
        grid-template-columns: 1fr;
        gap: 48px
    }

    .events-big-grid {
        grid-template-columns: 1fr 1fr
    }

    .cta-band-inner {
        grid-template-columns: 1fr;
        gap: 44px
    }

    .cta-band-right {
        text-align: left
    }

    .masonry {
        column-count: 2
    }
}

@media(max-width:768px) {

    #quick-contact,
    #contact-main,
    #faq,
    #events,
    #cta-band,
    #gallery {
        padding: 72px 20px
    }

    .map-wrap {
        padding: 60px 20px
    }

    #filter-bar {
        padding: 16px 20px;
        top: 64px
    }

    .qc-grid {
        grid-template-columns: 1fr
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0
    }

    .contact-form-wrap {
        padding: 32px 20px
    }

    .events-big-grid {
        grid-template-columns: 1fr
    }

    .events-section-header {
        flex-direction: column;
        align-items: flex-start
    }

    .cta-band-actions {
        flex-direction: column
    }

    .cta-band-actions .btn-primary,
    .cta-band-actions .btn-outline {
        text-align: center
    }

    .masonry {
        column-count: 2
    }

    .lightbox-img {
        height: 250px;
        font-size: 56px
    }

    .story-inner,
    .values-grid,
    .team-grid,
    .steps-grid,
    .programs-grid,
    .coaches-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:480px) {
    .social-row {
        gap: 8px
    }

    .filter-inner {
        gap: 8px
    }

    .filter-btn {
        padding: 8px 14px;
        font-size: 11px
    }

    .masonry {
        column-count: 1
    }

    .gal-filter-btn {
        padding: 8px 14px;
        font-size: 11px
    }
}

.page-hero-ghost {
    display: none
}

/* ===================================================
   SMALL MOBILE — ≤480px
=================================================== */
@media(max-width:480px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 28px
    }

    .mobile-drawer-links {
        padding-left: 0px;
    }

    .mobile-drawer-links a {
        font-size: 24px
    }
}

/* ===== TOURNAMENT REGISTRATION REFINED ===== */
.registration-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 8px;
    margin-top: -60px;
    position: relative;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.event-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

/* ── Event Selection Card: Base (Enabled) ─────────────────── */
.event-sel-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0.0, 0.0, 0, 0.04);
}

.event-sel-card:not(.disabled):hover {
    border-color: var(--fire);
    box-shadow: 0 8px 30px rgba(255, 61, 0, 0.10);
    transform: translateY(-3px);
}

/* ── Selected State ──────────────────────────────────────── */
.event-sel-card.selected {
    border-color: var(--fire) !important;
    background: #fff9f7 !important;
    box-shadow: 0 8px 30px rgba(255, 61, 0, 0.14) !important;
}

.event-sel-card.selected::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--fire);
    border-radius: 12px 0 0 12px;
}

/* ── Disabled State ──────────────────────────────────────── */
.event-sel-card.disabled {
    background: #f3f4f6;
    border-color: #e5e7eb;
    border-style: dashed;
    opacity: 0.75;
    pointer-events: none;
}

.event-sel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

/* Custom Checkbox Design - Light Theme */
.fyt-check-container {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    color: #555;
    transition: color 0.3s;
}

.event-sel-card:not(.disabled):hover .fyt-check-container {
    color: var(--fire);
}

.fyt-check-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.fyt-checkmark {
    height: 22px;
    width: 22px;
    background-color: #f3f4f6;
    border: 2px solid #d1d5db;
    border-radius: 4px;
    display: inline-block;
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s;
}

.fyt-check-container:hover input~.fyt-checkmark {
    background-color: #fee5df;
    border-color: var(--fire);
}

.fyt-check-container input:checked~.fyt-checkmark {
    background-color: var(--fire);
    border-color: var(--fire);
}

.fyt-checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 11px;
    border: solid white;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
}

.fyt-check-container input:checked~.fyt-checkmark:after {
    display: block;
}

.already-registered-badge {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 10px 18px;
    border-radius: 8px;
    color: #166534;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
    width: 100%;
}

.already-registered-badge i {
    font-size: 14px;
    color: #22c55e;
}

.event-card-body {
    flex: 1;
}

.event-sel-name {
    font-family: 'Bebas Neue', cursive;
    font-size: 28px;
    line-height: 1;
    color: #080a0f;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.event-sel-card.selected .event-sel-name {
    color: var(--fire);
}

.event-sel-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.event-sel-infobox {
    display: flex;
    flex-direction: column;
    border-right: 1px solid #e5e7eb;
    padding-right: 15px;
}

.event-sel-infobox:last-child {
    border-right: none;
    padding-right: 0;
}

.event-sel-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #9ca3af;
    letter-spacing: 1.5px;
    margin-bottom: 3px;
}

.event-sel-val {
    color: #374151;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 600;
}

.event-sel-val.price {
    color: var(--fire);
    font-family: 'Bebas Neue', cursive;
    font-size: 22px;
}

.event-type-tag {
    background: #f3f4f6;
    color: #6b7280;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid #e5e7eb;
}

.event-sel-card.selected .event-type-tag {
    background: #fee5df;
    color: var(--fire);
    border-color: rgba(255, 61, 0, 0.2);
}

.partner-selection-area {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e5e7eb;
}

.partner-input-row {
    margin-bottom: 12px;
}

.partner-input-row:last-child {
    margin-bottom: 0;
}

.partner-input-row label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #6b7280;
    letter-spacing: 1px;
    margin-bottom: 6px;
    display: block;
}

.fyt-select,
.fyt-input {
    background: #f9fafb !important;
    border: 1px solid #d1d5db !important;
    color: #111 !important;
    border-radius: 6px !important;
    padding: 12px 15px !important;
    font-family: 'Barlow', sans-serif !important;
    transition: all 0.3s !important;
    font-size: 14px !important;
    width: 100%;
}

.fyt-input:focus {
    border-color: var(--fire) !important;
    background: #fff !important;
    box-shadow: 0 0 0 3px rgba(255, 61, 0, 0.08) !important;
    outline: none;
}

.fyt-input::placeholder {
    color: #9ca3af !important;
    opacity: 1;
}

.fyt-input:disabled {
    background: #f3f4f6 !important;
    color: #9ca3af !important;
    cursor: not-allowed;
}

.fyt-select:focus,
.fyt-input:focus {
    border-color: rgba(255, 255, 255, 0.3) !important;
    background: rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.05) !important;
}

.fyt-input:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: rgba(0, 0, 0, 0.1) !important;
}

@media (max-width: 768px) {
    .registration-card {
        padding: 24px;
    }

    .event-selection-grid {
        grid-template-columns: 1fr;
    }

    .event-sel-name {
        font-size: 24px;
    }
}

.ui-autocomplete {
    z-index: 9999 !important;
    max-height: 250px;
    overflow-y: auto;
    background: #0e1118 !important;
    border: 1px solid rgba(255, 61, 0, 0.3) !important;
    border-radius: 4px;
    padding: 10px 0 !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8) !important;
}

.ui-menu-item-wrapper {
    padding: 12px 20px !important;
    font-family: 'Barlow', sans-serif;
    color: var(--light) !important;
    font-size: 15px !important;
    border: none !important;
}

.ui-menu-item-wrapper.ui-state-active {
    background: var(--fire) !important;
    color: #fff !important;
}

/* ── Package Option Card: Base (Enabled) ─────────────────── */
.package-option-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.package-option-card:hover {
    border-color: var(--fire);
    box-shadow: 0 8px 30px rgba(255, 61, 0, 0.10);
    transform: translateY(-3px);
}

/* ── Package Selected State ──────────────────────────────── */
.package-option-card.pkg-selected {
    border-color: var(--fire) !important;
    background: #fff9f7 !important;
    box-shadow: 0 8px 30px rgba(255, 61, 0, 0.14) !important;
}

.package-option-card.pkg-selected::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--fire);
    border-radius: 12px 0 0 12px;
}

.pkg-type-label {
    font-family: 'Bebas Neue', cursive;
    font-size: 22px;
    color: #080a0f;
    display: block;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.package-option-card.pkg-selected .pkg-type-label {
    color: var(--fire);
}

/* ── Package Disabled / Sold Out ─────────────────────────── */
.package-option-card.pkg-disabled {
    background: #f3f4f6;
    border-color: #e5e7eb;
    border-style: dashed;
    opacity: 0.75;
    pointer-events: none;
}

.sold-out-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fire);
    font-family: 'Bebas Neue', cursive;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
    backdrop-filter: blur(2px);
    z-index: 5;
    border-radius: 10px;
}

.alert-custom {
    border-radius: 4px;
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
}

/* Responsive Table / Mobile UI for Registration */
@media (max-width: 991px) {
    .registration-card {
        padding: 25px 20px;
        margin-top: -40px;
    }

    .table-custom,
    .table-custom thead,
    .table-custom tbody,
    .table-custom th,
    .table-custom td,
    .table-custom tr {
        display: block;
    }

    .table-custom thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .table-custom tr {
        border: 1px solid rgba(255, 255, 255, 0.05);
        margin-bottom: 20px;
        background: rgba(255, 255, 255, 0.01);
        border-radius: 8px;
        overflow: hidden;
    }

    .table-custom td {
        border: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        position: relative;
        padding-left: 50% !important;
        text-align: right !important;
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .table-custom td:last-child {
        border-bottom: none;
    }

    .table-custom td:before {
        content: attr(data-label);
        position: absolute;
        left: 20px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        text-align: left;
        font-family: 'Barlow Condensed', sans-serif;
        font-weight: 700;
        text-transform: uppercase;
        color: var(--muted);
        font-size: 11px;
        letter-spacing: 1px;
    }

    .table-custom td[data-label="SELECT"] {
        background: rgba(255, 61, 0, 0.05);
        justify-content: center !important;
        padding-left: 20px !important;
        text-align: center !important;
    }

    .table-custom td[data-label="SELECT"]:before {
        display: none;
    }

    .event-card-name {
        font-size: 18px;
    }

    .partner-input-wrap .fyt-input {
        margin-top: 5px;
    }

    /* Adjust Footer CTA on mobile */
    #registrationForm .text-end {
        text-align: center !important;
        margin-top: 20px;
    }

    #registrationForm .btn-primary {
        width: 100%;
    }

    .modal-footer .w-100 {
        flex-direction: column;
        gap: 15px;
    }

    .modal-footer .w-100 div {
        width: 100%;
        display: flex;
        gap: 10px;
    }

    .modal-footer .w-100 div button {
        flex: 1;
    }

    .alert-custom {
        font-size: 13px;
        padding: 12px !important;
    }
}

/* ===== PASSWORD STRENGTH METER ===== */
.password-strength-meter {
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    margin-top: 10px;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    display: none;
}

.password-strength-meter.visible {
    display: block;
}

.password-strength-bar {
    height: 100%;
    width: 0;
    transition: all 0.3s ease;
}

.strength-weak {
    width: 25%;
    background: #ef4444;
}

.strength-medium {
    width: 50%;
    background: #eab308;
}

.strength-strong {
    width: 75%;
    background: #3b82f6;
}

.strength-very-strong {
    width: 100%;
    background: #22c55e;
}

.password-requirements {
    font-size: 13px;
    color: var(--muted);
    margin-top: 10px;
    list-style: none;
    padding: 0;
}

.requirement-item {
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.6;
    margin-bottom: 4px;
}

.requirement-item i {
    font-size: 10px;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.requirement-item.valid {
    color: #22c55e;
}

/* Card Enhancements */
.profile-card-footer {
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 61, 0, 0.2), transparent);
    margin: 40px 0;
}

/* ============================================================
   WHITE BACKGROUND INTERACTIVE (WBI) SECTIONS
   ============================================================ */
.wbi-section {
    background-color: #ffffff !important;
    background-image: none !important;
    color: #1a1a1a !important;
    position: relative;
    z-index: 10;
}

.wbi-section .section-title {
    color: #080a0f !important;
}

.wbi-section .section-title .outline {
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.15) !important;
    color: transparent !important;
}

.wbi-section .section-label {
    color: var(--fire) !important;
}

.wbi-section .section-label::before {
    background: var(--fire) !important;
}

/* WBI Cards */
.wbi-card {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04) !important;
    transition: all 0.3s ease !important;
}

.wbi-card:hover {
    transform: translateY(-5px) !important;
    border-color: var(--fire) !important;
    box-shadow: 0 15px 50px rgba(255, 61, 0, 0.1) !important;
}

.wbi-card .dash-card-title,
.wbi-card .ev-name,
.wbi-card h3 {
    color: #080a0f !important;
}

.wbi-card .dash-card-text,
.wbi-card .ev-meta,
.wbi-card p,
.wbi-card .ev-meta-item {
    color: #555555 !important;
}

/* WBI Tables */
.wbi-table-wrap {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 8px !important;
    overflow: hidden !important;
}

.wbi-table-header {
    background: #fcfcfc !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.wbi-table th {
    background: #f8f9fa !important;
    color: #666666 !important;
    border-bottom: 2px solid #eeeeee !important;
}

.wbi-table td {
    color: #333333 !important;
    border-bottom: 1px solid #f0f0f0 !important;
}

.wbi-table tr:hover td {
    background: #f9fafb !important;
}

/* WBI Modals */
.wbi-modal .modal-content {
    background: #ffffff !important;
    border: none !important;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15) !important;
    border-radius: 16px !important;
}

.wbi-modal .modal-header {
    border-bottom: 1px solid #f0f0f0 !important;
    padding: 25px 30px !important;
}

.wbi-modal .modal-title {
    color: #080a0f !important;
    font-size: 24px !important;
    letter-spacing: 1px !important;
}

.wbi-modal .btn-close {
    opacity: 0.8 !important;
}

.wbi-modal .modal-body {
    background: #ffffff !important;
}

.wbi-modal .modal-footer {
    border-top: 1px solid #f0f0f0 !important;
    padding: 25px 30px !important;
    background: #fcfcfc !important;
    border-radius: 0 0 16px 16px !important;
}

.wbi-modal .modal-footer h4 {
    color: #080a0f !important;
}


/* WBI Forms */
.wbi-form-control,
.wbi-section .form-control-custom,
.wbi-section .fyt-select {
    background: #fdfdfd !important;
    border: 1px solid #d1d5db !important;
    color: #111827 !important;
    border-radius: 4px !important;
}

.wbi-form-control:focus,
.wbi-section .form-control-custom:focus,
.wbi-section .fyt-select:focus {
    border-color: var(--fire) !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(255, 61, 0, 0.1) !important;
}

.wbi-section .form-label,
.wbi-section label {
    color: #374151 !important;
    font-weight: 600 !important;
}

/* Specific component fixes */
.wbi-section .ev-line {
    background: linear-gradient(90deg, var(--fire), transparent) !important;
}

.wbi-section .status-badge {
    border: 1px solid transparent !important;
}

.wbi-section .alert-custom {
    border-radius: 4px !important;
}

/* WBI DataTable Overrides */
.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_processing,
.dataTables_wrapper .dataTables_paginate {
    color: #6b7280 !important;
    font-family: 'Barlow Condensed', sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    font-size: 14px !important;
    margin: 15px 0 !important;
}

.dataTables_wrapper .dataTables_length select,
.dataTables_wrapper .dataTables_filter input {
    background: #fdfdfd !important;
    border: 1px solid #d1d5db !important;
    color: #111827 !important;
    padding: 6px 12px !important;
    border-radius: 4px !important;
    margin-left: 10px !important;
    margin-right: 10px !important;
    outline: none !important;
    transition: all 0.2s ease !important;
}

.dataTables_wrapper .dataTables_length select:focus,
.dataTables_wrapper .dataTables_filter input:focus {
    border-color: var(--fire) !important;
    box-shadow: 0 0 0 3px rgba(255, 61, 0, 0.1) !important;
}

/* Premium Pagination Styling */
.dataTables_wrapper .dataTables_paginate {
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    background: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    color: #374151 !important;
    min-width: 36px !important;
    height: 36px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 8px !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
    font-family: 'Bebas Neue', cursive !important;
    font-size: 16px !important;
    letter-spacing: 0.5px !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover:not(.disabled) {
    background: #f9fafb !important;
    border-color: #d1d5db !important;
    color: var(--fire) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05) !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background: var(--fire) !important;
    color: #ffffff !important;
    border-color: var(--fire) !important;
    box-shadow: 0 4px 12px rgba(249, 3, 4, 0.2) !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled {
    opacity: 0.4 !important;
    cursor: not-allowed !important;
    background: #f3f4f6 !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.previous,
.dataTables_wrapper .dataTables_paginate .paginate_button.next {
    font-size: 14px !important;
    padding: 0 15px !important;
}

/* Premium Pay Now Button */
.btn-pay-now {
    display: inline-block !important;
    background: var(--fire) !important;
    color: #ffffff !important;
    font-family: 'Bebas Neue', cursive !important;
    font-size: 15px !important;
    letter-spacing: 1px !important;
    padding: 6px 20px !important;
    border-radius: 4px !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: none !important;
    cursor: pointer !important;
    box-shadow: 0 4px 10px rgba(249, 3, 4, 0.15) !important;
    text-align: center !important;
    min-width: 80px !important;
}

.btn-pay-now:hover {
    background: var(--dark) !important;
    color: var(--white) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 15px rgba(249, 3, 4, 0.25) !important;
}

.btn-pay-now:active {
    transform: translateY(0) !important;
}

/* WBI Table Headers specifically for Datatables */
.wbi-table.dataTable thead th {
    background: #f8f9fa !important;
    padding: 18px 15px !important;
    font-family: 'Bebas Neue', cursive !important;
    font-size: 18px !important;
    letter-spacing: 1px !important;
    color: #111827 !important;
    border-bottom: 2px solid #e5e7eb !important;
    text-align: left !important;
}

.wbi-table.dataTable tbody td {
    padding: 15px !important;
    vertical-align: middle !important;
    font-family: 'Barlow', sans-serif !important;
    color: #374151 !important;
}

.wbi-table.dataTable tbody tr:hover {
    background-color: #f9fafb !important;
}

/* ===== LIGHT SECTION ALTERNATING ===== */
.light-page section:nth-of-type(odd) {
    background: #ffffff !important;
}

.light-page section:nth-of-type(even) {
    background: #f8f9fa !important;
}

/* Exclude hero sections from light background if needed, 
   but user asked for pages' sections. Usually hero is first.
   If hero is section:nth-of-type(1), it will be white.
*/

.light-page section#hero,
.light-page .page-hero {
    background: var(--dark) !important;
    /* Keep heroes dark for brand consistency */
}

.light-page section:not(#hero),
.light-page section:not(#hero) .section-title,
.light-page section:not(#hero) .about-desc,
.light-page section:not(#hero) .vision-item-text,
.light-page section:not(#hero) .vision-item-title,
.light-page section:not(#hero) .value-desc,
.light-page section:not(#hero) .partners-label,
.light-page section:not(#hero) .contact-detail-val,
.light-page section:not(#hero) .contact-desc,
.light-page section:not(#hero) .form-group label,
.light-page section:not(#hero) p,
.light-page section:not(#hero) .story-text p,
.light-page section:not(#hero) .story-text h3,
.light-page section:not(#hero) .vision-body,
.light-page section:not(#hero) .step-title,
.light-page section:not(#hero) .step-text,
.light-page section:not(#hero) .prog-name,
.light-page section:not(#hero) .prog-desc,
.light-page section:not(#hero) .prog-features li,
.light-page section:not(#hero) .coach-name,
.light-page section:not(#hero) .coach-sport,
.light-page section:not(#hero) .academy-cta-title,
.light-page section:not(#hero) .academy-cta-text {
    color: #1a1a1a !important;
}

.light-page section:not(#hero) .section-title .outline {
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.15) !important;
}

.light-page section:not(#hero) .section-label {
    color: var(--fire) !important;
}

.light-page section:not(#hero) .section-label::before {
    background: var(--fire) !important;
}

/* Specific adjustments for cards and elements in light sections */
.light-page .spark-card,
.light-page .value-card,
.light-page .intro-stat,
.light-page .prog-card,
.light-page .coach-card,
.light-page .step-card,
.light-page .vision-card {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
}

.light-page .spark-letter,
.light-page .value-letter,
.light-page .step-num {
    color: rgba(0, 0, 0, 0.3) !important;
}

.light-page .btn-outline {
    border-color: rgba(0, 0, 0, 0.1) !important;
    color: #555 !important;
}

.light-page .btn-outline:hover {
    border-color: var(--fire) !important;
    color: var(--fire) !important;
}

.light-page .theme-separator {
    background: rgba(0, 0, 0, 0.05) !important;
}

.light-page .partners-row {
    border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.light-page .partner-item {
    color: #888 !important;
}

.light-page .partner-item:hover {
    color: var(--fire) !important;
}

/* FAQ & Map Specifics for Light Mode */
.light-page .faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.light-page .faq-q {
    color: #1a1a1a !important;
}

.light-page .faq-a {
    color: #555 !important;
}

.light-page .map-placeholder {
    background: #f1f1f1 !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.light-page .map-text {
    color: #1a1a1a !important;
}

.light-page .map-address {
    color: #555 !important;
}

.light-page .qc-card {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
}

.light-page .qc-icon {
    /* background: rgba(249, 3, 4, 0.05) !important; */
}

.light-page .qc-title {
    color: #1a1a1a !important;
}

.light-page .qc-value {
    color: #555 !important;
}

.light-page .contact-big {
    color: #1a1a1a !important;
}

.light-page .contact-desc {
    color: #555 !important;
}

.light-page .contact-det-label {
    color: #888 !important;
}

.light-page .contact-det-val,
.light-page .contact-det-val a {
    color: #1a1a1a !important;
}

.light-page .social-pill {
    border-color: rgba(0, 0, 0, 0.1) !important;
    color: #555 !important;
}

.light-page .wbi-form-control {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    color: #1a1a1a !important;
}

.light-page .form-group label {
    color: #555 !important;
}

.qrCodeModal {
    z-index: 9999;
}

/* Category Filters / Tabs */
.category-tabs-wrapper {
    overflow-x: auto;
    padding-bottom: 2px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.category-tabs-wrapper::-webkit-scrollbar {
    display: none;
}

.category-filters {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    padding: 4px 2px;
}

.category-filters .nav-item {
    flex: 0 0 auto;
}

.category-filters .nav-link {
    background: rgb(197 192 192 / 73%);
    color: rgb(127 121 121);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    padding: 10px 24px;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-transform: uppercase;
}

.category-filters .nav-link.active {
    background: #ff3d00 !important;
    color: #ffffff !important;
    border-color: #ff3d00 !important;
    box-shadow: 0 4px 15px rgba(255, 61, 0, 0.3);
}

.category-filters .nav-link:hover:not(.active) {
    background: rgba(102, 97, 97, 0.08);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
}

.event-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

/* Datepicker z-index fix for modals */
.datepicker.datepicker-dropdown {
    z-index: 2100 !important;
}

/* ============================================================
   REFACTORED UTILITIES & COMPONENTS
   ============================================================ */

/* Utilities */
.mt-8 {
    margin-top: 8px;
}

.mt-16 {
    margin-top: 16px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-32 {
    margin-top: 32px;
}

.mt-36 {
    margin-top: 36px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-8 {
    margin-bottom: 8px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-24 {
    margin-bottom: 24px;
}

.mb-25 {
    margin-bottom: 25px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-56 {
    margin-bottom: 56px;
}

.mb-64 {
    margin-bottom: 64px;
}

.py-40 {
    padding: 40px 0;
}

.px-20 {
    padding: 0 20px;
}

.p-15 {
    padding: 15px;
}

.p-32-28 {
    padding: 32px 28px;
}

.max-w-500 {
    max-width: 500px;
}

.max-w-900 {
    max-width: 900px;
}

.max-w-1380 {
    max-width: 1380px;
    margin: 0 auto;
}

.fs-11 {
    font-size: 11px;
}

.fs-12 {
    font-size: 12px;
}

.fs-13 {
    font-size: 13px;
}

.fs-15 {
    font-size: 15px;
}

.lh-1 {
    line-height: 1;
}

.lh-1-9 {
    line-height: 1.9;
}

.ls-1 {
    letter-spacing: 1px;
}

.o-6 {
    opacity: 0.6;
}

/* Page: Profile */
.profile-container {
    max-width: 900px;
    margin: 0 auto;
}

.profile-header-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    background: var(--fire);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    border-radius: 4px;
    font-family: 'Bebas Neue', cursive;
}

.profile-info h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 36px;
    margin: 0;
    letter-spacing: 1px;
}

.profile-role {
    display: inline-block;
    background: rgba(255, 61, 0, 0.1);
    color: var(--fire);
    padding: 4px 12px;
    border-radius: 2px;
    font-family: 'Bebas Neue', cursive;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.profile-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.detail-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 4px;
}

.detail-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
    margin-bottom: 5px;
}

.detail-value {
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    color: var(--light);
    font-weight: 500;
}

.profile-actions {
    margin-top: 40px;
    display: flex;
    gap: 15px;
    justify-content: flex-start;
}

.profile-tabs-nav {
    border: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.profile-tabs-nav .nav-link {
    text-align: left;
    padding: 15px 25px;
    font-family: 'Bebas Neue', cursive;
    font-size: 20px;
    letter-spacing: 1px;
    color: #6b7280;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-tabs-nav .nav-link i {
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.profile-tabs-nav .nav-link:hover {
    color: #111827;
    background: #f3f4f6;
}

.profile-tabs-nav .nav-link.active {
    background: var(--fire) !important;
    color: #fff !important;
    border-color: var(--fire);
    box-shadow: 0 4px 12px rgba(255, 61, 0, 0.2);
}

@media (max-width: 991px) {
    .profile-tabs-nav {
        flex-direction: row;
        margin-bottom: 30px;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .profile-tabs-nav .nav-link {
        white-space: nowrap;
    }
}

/* Page: Attendance */
.filter-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.select-group {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.select-item {
    flex: 1;
    min-width: 250px;
}

.btn-refresh {
    background: var(--fire);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    font-family: 'Bebas Neue', cursive;
    font-size: 18px;
    letter-spacing: 1px;
    cursor: pointer;
    height: 52px;
    transition: all 0.3s;
}

.btn-mark {
    background: transparent;
    border: 1px solid var(--fire);
    color: var(--fire);
    padding: 11px 25px;
    font-family: 'Bebas Neue', cursive;
    font-size: 18px;
    letter-spacing: 1px;
    cursor: pointer;
    height: 52px;
    transition: all 0.3s;
}

.btn-mark:hover {
    background: var(--fire);
    color: var(--white);
}

.dash-table {
    width: 100% !important;
    background: transparent !important;
}

.dash-table thead th {
    background: rgba(255, 255, 255, 0.03) !important;
    color: var(--muted) !important;
    font-family: 'Barlow Condensed', sans-serif !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    border-bottom: 1px solid rgba(255, 61, 0, 0.2) !important;
    padding: 15px !important;
}

.dash-table tbody td {
    background: transparent !important;
    color: var(--light) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
    padding: 15px !important;
    font-size: 16px !important;
}

/* Page: Password */
.password-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 4px;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.password-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--fire);
}

.pass-messages {
    margin-bottom: 25px;
}

.alert-msg {
    padding: 15px;
    border-radius: 4px;
    font-size: 16px;
}

/* Additional Layout & Color Utilities */
.d-grid {
    display: grid;
}

.grid-2 {
    grid-template-columns: 1fr 1fr;
}

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

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

.gap-80 {
    gap: 80px;
}

.gap-16 {
    gap: 16px;
}

.gap-4 {
    gap: 4px;
}

.color-muted {
    color: var(--muted) !important;
}

.color-white {
    color: var(--white) !important;
}

.color-gold {
    color: var(--gold) !important;
}

.text-uppercase {
    text-transform: uppercase;
}

.position-relative {
    position: relative;
}

.overflow-hidden {
    overflow: hidden;
}

.bebas-48 {
    font-family: 'Bebas Neue', cursive;
    font-size: 48px;
}

.bebas-clamp {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(52px, 8vw, 100px);
    line-height: 0.9;
    letter-spacing: 2px;
}

.barlow-11-fw600 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 11px;
    font-weight: 600;
}

.ls-2 {
    letter-spacing: 2px;
}

/* Additional Missing Utilities */
.mt-10 {
    margin-top: 10px;
}

.px-30-py-10 {
    padding: 10px 30px;
}

.px-20-py-10 {
    padding: 10px 20px;
}

.bebas-36 {
    font-family: 'Bebas Neue', cursive;
    font-size: 36px;
}

/* Additional Utilities for Profile and Attendance */
.border-soft {
    border-color: rgba(0, 0, 0, 0.1) !important;
}

.bebas-333-m0 {
    font-family: 'Bebas Neue', cursive;
    color: #333 !important;
    margin: 0;
}

/* Contact Form Alerts */
.alert-contact-danger {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
    padding: 15px;
    border-radius: 4px;
}

.alert-contact-success {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2);
    padding: 15px;
    border-radius: 4px;
}

/* ============================================================
   MOBILE OPTIMIZATION (GRIDS & FLEX)
   ============================================================ */

@media (max-width: 991px) {
    .grid-2 {
        grid-template-columns: 1fr !important;
    }

    .intro-inner {
        padding: 40px 20px !important;
        gap: 40px !important;
    }

    .gap-80 {
        gap: 30px !important;
    }

    .profile-header-box {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .select-group {
        flex-direction: column;
        align-items: stretch;
    }

    .select-item {
        width: 100%;
    }

    .intro-stats-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 36px !important;
    }

    .bebas-clamp {
        font-size: 48px !important;
    }

    .p-32-28 {
        padding: 24px 20px !important;
    }

    .py-40 {
        padding: 30px !important;
    }
}