/* ==========================================
   WA BOXING PROMOTION - PREMIUM SPORTS CSS
   ========================================== */

/* 1. CSS VARIABLES & DESIGN SYSTEM */
:root {
    /* Colors */
    --bg-black: #0A0A0A;
    --bg-darker: #050505;
    --bg-card: rgba(18, 18, 18, 0.7);
    --bg-card-hover: rgba(26, 26, 26, 0.95);
    
    --accent-gold: #D4AF37;
    --accent-gold-rgb: 212, 175, 55;
    --accent-gold-gradient: linear-gradient(135deg, #F3E5AB 0%, #D4AF37 50%, #AA7C11 100%);
    --accent-red: #E50914;
    --accent-red-rgb: 229, 9, 20;
    
    --text-white: #FFFFFF;
    --text-gray-light: #F3F3F3;
    --text-gray: #A0A0A0;
    --text-gray-dark: #666666;
    
    --border-glass: rgba(255, 255, 255, 0.06);
    --border-gold: rgba(212, 175, 55, 0.2);
    --border-gold-hover: rgba(212, 175, 55, 0.6);
    
    /* Effects */
    --glass-blur: blur(12px);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 10px 40px rgba(212, 175, 55, 0.15);
    --shadow-inset: inset 0 2px 4px rgba(255, 255, 255, 0.05);
    
    /* Fonts */
    --font-heading: 'Montserrat', sans-serif;
    --font-ui: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing & Borders */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
}

body {
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
}

ul {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-black);
}
::-webkit-scrollbar-thumb {
    background: #222;
    border-radius: var(--radius-full);
    border: 2px solid var(--bg-black);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* 3. LAYOUT UTILITIES */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 100px 0;
    position: relative;
}

.text-center { text-align: center; }
.w-full { width: 100%; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.font-accent { color: var(--accent-gold); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-ui);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 0.95rem;
}

.btn-block {
    width: 100%;
    padding: 12px 24px;
    font-size: 0.85rem;
}

.btn-gold {
    background: var(--accent-gold-gradient);
    color: var(--bg-black);
    border: none;
    box-shadow: var(--shadow-inset);
}
.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 2px solid var(--accent-gold);
}
.btn-outline:hover {
    background: var(--accent-gold-gradient);
    color: var(--bg-black);
    transform: translateY(-3px);
    border-color: transparent;
}

.btn-dark {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    border: 1px solid var(--border-glass);
}
.btn-dark:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-white);
}

/* Headers & Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
}

.section-tag {
    font-family: var(--font-ui);
    color: var(--accent-gold);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 12px;
    display: block;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 60px;
    position: relative;
}

/* Lead Paragraphs */
.lead-p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-gray-light);
    margin-bottom: 20px;
}
.body-p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 24px;
}

/* 4. HEADER & NAV SYSTEM */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    background: var(--bg-black);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
    padding: 8px 0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
}

.logo-area {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.logo-area:hover .logo-img {
    transform: scale(1.05);
}

.logo-wa {
    background: var(--accent-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-boxing {
    color: var(--text-white);
    margin-left: 4px;
}

/* Menu Links */
.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu ul li {
    position: relative;
}

.nav-menu ul li a {
    font-family: var(--font-ui);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 10px 0;
    color: var(--text-gray-light);
}

.nav-menu ul li a:hover,
.nav-menu ul li a.active {
    color: var(--accent-gold);
}

/* Mega Menu Trigger Dropdown style */
.mega-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
}

.mega-trigger i {
    font-size: 0.75rem;
    transition: transform 0.3s;
}

.nav-menu ul li:hover .mega-trigger i {
    transform: rotate(180deg);
}

/* Mega Menu Dropdown Layout */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 600px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    box-shadow: var(--shadow-gold);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-menu ul li:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.mega-col h3 {
    font-size: 0.8rem;
    color: var(--accent-gold);
    margin-bottom: 16px;
    letter-spacing: 2px;
}

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

.mega-col ul li a {
    font-size: 0.85rem;
    text-transform: none;
    font-family: var(--font-body);
    font-weight: 400;
    letter-spacing: 0px;
    color: var(--text-gray);
}

.mega-col ul li a:hover {
    color: var(--text-white);
    padding-left: 4px;
}

.mega-featured-col {
    grid-column: span 1;
}

.mega-featured-card {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    height: 100%;
    border: 1px solid var(--border-glass);
}

.mega-featured-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mega-featured-card .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: 16px;
}

.mega-featured-card .badge {
    font-size: 0.65rem;
    background: var(--accent-gold);
    color: var(--bg-black);
    padding: 2px 6px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
}

.mega-featured-card h4 {
    font-size: 0.85rem;
    margin-top: 6px;
    font-weight: 700;
}

/* Mobile Toggles */
.mobile-nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.mobile-nav-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: var(--text-white);
    transition: var(--transition-smooth);
}

/* MOBILE DRAWER */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100%;
    background-color: var(--bg-black);
    border-left: 1px solid var(--border-glass);
    z-index: 2000;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
}

.drawer-header .logo-wa {
    font-size: 1.5rem;
    font-weight: 900;
}

.close-drawer {
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
}

.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.drawer-link-item {
    font-family: var(--font-ui);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.drawer-footer {
    margin-top: auto;
}

/* 5. HERO SECTION & PARALLAX */
.hero-section {
    height: 100vh;
    min-height: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding-top: 120px;
    overflow: hidden;
}

.hero-bg-parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    transform: translateY(0);
    will-change: transform;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 40px;
    height: 100%;
}

.hero-content {
    max-width: 700px;
}

.hero-tagline {
    font-family: var(--font-ui);
    color: var(--accent-gold);
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 5px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2rem, 7vw, 5.5rem);
    font-weight: 900;
    margin-bottom: 24px;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-gray-light);
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

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

/* COUNTDOWN BOARD */
.hero-countdown-wrapper {
    display: flex;
    justify-content: flex-end;
}

.countdown-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 30px;
    width: 100%;
    max-width: 450px;
    box-shadow: var(--shadow-gold), var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.countdown-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-gold-gradient);
}

.countdown-event-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 20px;
    margin-bottom: 24px;
}

.countdown-event-header h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-top: 8px;
    color: var(--text-white);
    letter-spacing: 0px;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--accent-red);
}

.live-indicator .dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-red);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.timer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.timer-unit {
    flex: 1;
    text-align: center;
}

.timer-num {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 6vw, 2.8rem);
    font-weight: 900;
    color: var(--text-white);
    display: block;
    line-height: 1;
}

.timer-label {
    font-family: var(--font-ui);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-gray);
    letter-spacing: 1.5px;
    margin-top: 6px;
    display: block;
}

.timer-colon {
    font-size: clamp(1.2rem, 4vw, 2rem);
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
    padding-bottom: 12px;
}

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

.countdown-footer p {
    font-size: 0.75rem;
    color: var(--text-gray);
    max-width: 60%;
}

.countdown-footer p i {
    color: var(--accent-gold);
    margin-right: 4px;
}

/* Scroll wheel indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
    cursor: pointer;
}

.mouse-icon {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-gray);
    border-radius: var(--radius-full);
    position: relative;
}

.mouse-icon .wheel {
    width: 4px;
    height: 8px;
    background-color: var(--accent-gold);
    border-radius: var(--radius-full);
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

.scroll-text {
    font-family: var(--font-ui);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-gray);
}

/* 6. HERO LOGOS */
.hero-logos {
    grid-column: 1 / -1;
    margin-top: 0;
    margin-bottom: 15px;
    width: 100%;
    max-width: 100%;
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 5;
    overflow: hidden;
}

.hero-logos-title {
    font-family: var(--font-ui);
    font-size: 0.6rem;
    font-weight: 800;
    color: var(--text-gray);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-logos-container {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
    padding: 2px 0;
    min-width: 0;
}

.hero-logos-container::before,
.hero-logos-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.hero-logos-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-black), transparent);
}

.hero-logos-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-black), transparent);
}

.hero-logos-track {
    display: flex;
    gap: 20px;
    width: max-content;
    flex-wrap: nowrap;
    align-items: center;
    animation: infiniteScrollLogos 25s linear infinite;
}

.hero-logos-container:hover .hero-logos-track {
    animation-play-state: paused;
}

.hero-logo-item {
    width: 115px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.02); /* Soft transparent background */
    border: 1px solid rgba(255, 255, 255, 0.08); /* Clean subtle border */
    border-radius: var(--radius-sm);
    padding: 4px;
    transition: var(--transition-smooth);
    cursor: pointer;
    flex-shrink: 0; /* Prevent flex items from shrinking */
    overflow: hidden;
}

.hero-logo-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--accent-gold);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.25);
    transform: translateY(-1px);
}

.hero-logo-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    opacity: 0.85; /* Transparent PNG looks great with slight opacity */
    filter: brightness(1.4) contrast(1.15); /* Boost colors to stand out sharply */
    transition: var(--transition-smooth);
}

.hero-logo-img.logo-wbb {
    filter: brightness(1) contrast(1.05);
}

.hero-logo-item:hover .hero-logo-img {
    opacity: 1;
    transform: scale(1.08);
}

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

/* 7. UPCOMING EVENTS SECTION */
.events-section {
    background: var(--bg-black);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.section-header .section-title {
    margin-bottom: 0;
}

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

.event-card-premium {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.event-card-premium:hover {
    transform: translateY(-8px);
    border-color: var(--border-gold-hover);
    box-shadow: var(--shadow-gold), var(--shadow-soft);
}

.event-image-wrap {
    height: 240px;
    position: relative;
    overflow: hidden;
}

.event-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s;
}

.event-card-premium:hover .event-image-wrap img {
    transform: scale(1.05);
}

.event-status {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--accent-red);
    color: var(--text-white);
    padding: 6px 12px;
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    border-radius: var(--radius-sm);
}

.event-status.status-soon {
    background-color: var(--accent-gold);
    color: var(--bg-black);
}

.event-info-panel {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.event-meta {
    display: flex;
    gap: 20px;
    font-size: 0.8rem;
    color: var(--accent-gold);
    font-family: var(--font-ui);
    font-weight: 600;
    margin-bottom: 16px;
}

.event-meta i {
    margin-right: 6px;
}

.event-title-main {
    font-size: 1.3rem;
    font-weight: 900;
    margin-bottom: 14px;
    color: var(--text-white);
}

.event-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 24px;
}

.event-fight-card {
    background: rgba(255,255,255,0.02);
    border-left: 3px solid var(--accent-gold);
    padding: 12px 16px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin-bottom: 24px;
}

.event-fight-card .card-title {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--accent-gold);
    display: block;
    text-transform: uppercase;
}

.event-fight-card .card-names {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-gray-light);
    display: block;
    margin-top: 4px;
}

.event-actions {
    display: flex;
    gap: 16px;
    margin-top: auto;
}

/* 8. FEATURED FIGHTERS SECTION */
.fighters-section {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}

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

.fighter-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.fighter-card:hover {
    border-color: var(--border-gold-hover);
    box-shadow: var(--shadow-gold);
}

.fighter-img-container {
    height: 380px;
    overflow: hidden;
    position: relative;
    background-color: #111;
}

.fighter-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fighter-card:hover .fighter-img {
    transform: scale(1.08);
}

.fighter-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent 50%, rgba(0, 0, 0, 0.95));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.fighter-card:hover .fighter-overlay {
    opacity: 1;
}

.fighter-stats-reveal {
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.fighter-card:hover .fighter-stats-reveal {
    transform: translateY(0);
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 8px 0;
}

.stat-row:last-child {
    border-bottom: none;
}

.stat-label {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-gray);
    text-transform: uppercase;
}

.stat-val {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
}

.fighter-details {
    padding: 24px;
    text-align: center;
    border-top: 1px solid var(--border-glass);
}

.fighter-division {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--accent-gold);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
}

.fighter-name {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-white);
}

.fighter-record {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 600;
}

/* 9. CHAMPIONSHIP HIGHLIGHTS (VIDEO TEASER) */
.highlights-section {
    background: var(--bg-black);
}

.highlights-video-container {
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-gold), var(--shadow-soft);
}

.video-mock-frame {
    height: 480px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.video-poster-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s;
}

.video-mock-frame:hover .video-poster-bg {
    transform: scale(1.03);
}

.play-trigger-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    color: var(--text-white);
    font-family: var(--font-ui);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 3px;
    z-index: 2;
}

.btn-play-video {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--accent-gold-gradient);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--bg-black);
    cursor: pointer;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
    transition: var(--transition-smooth);
}

.video-mock-frame:hover .btn-play-video {
    transform: scale(1.1);
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.8);
}

/* 10. ABOUT SECTION */
.about-section {
    background: var(--bg-darker);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.about-image-side {
    position: relative;
}

.image-wrapper-bordered {
    position: relative;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 16px;
    background: var(--bg-card);
}

.image-wrapper-bordered img {
    border-radius: var(--radius-md);
    width: 100%;
}

.floating-stat-box {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent-gold-gradient);
    color: var(--bg-black);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    text-align: center;
    min-width: 160px;
}

.floating-stat-box .stat-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    display: block;
    line-height: 1;
}

.floating-stat-box .stat-text {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 4px;
    display: block;
}

/* Creed Card */
.creed-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.04) 0%, rgba(20, 20, 20, 0.6) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-top: 30px;
    transition: var(--transition-smooth);
}

.creed-card:hover {
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.creed-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.creed-stars {
    color: var(--accent-gold);
    font-size: 0.8rem;
}

.creed-stars i {
    margin-right: 3px;
}

.creed-header h4 {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-white);
    margin: 0;
}

.creed-text {
    font-family: var(--font-body);
    font-style: italic;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-gray-light);
    margin: 0;
}

/* Section Header Center */
.section-header-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 50px;
}

/* Mission & Vision Section */
.mission-vision-section {
    background: var(--bg-black);
    padding: 100px 0;
    border-top: 1px solid var(--border-glass);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mission-commitment-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mission-block,
.commitment-block,
.vision-block {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 40px 35px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.vision-block {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mission-block:hover,
.commitment-block:hover,
.vision-block:hover {
    border-color: var(--border-gold-hover);
    box-shadow: var(--shadow-gold), var(--shadow-soft);
    transform: translateY(-5px);
}

.block-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
}

.block-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.block-header h4 {
    font-family: var(--font-ui);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--text-white);
    margin: 0;
    text-transform: uppercase;
}

.flyer-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.flyer-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.list-bullet {
    color: var(--accent-gold);
    font-size: 0.8rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.check-list .list-bullet {
    color: var(--accent-gold);
    font-size: 0.95rem;
}

.flyer-list p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0;
}

.vision-list {
    gap: 22px;
}

/* Affiliations Section */
.affiliations-section {
    background: var(--bg-darker);
    padding: 100px 0;
    border-top: 1px solid var(--border-glass);
}

.affiliations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.affiliation-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 45px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.affiliation-card:hover {
    border-color: var(--border-gold-hover);
    box-shadow: var(--shadow-gold), var(--shadow-soft);
    transform: translateY(-8px);
}

.aff-logo-wrap {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    padding: 8px;
    transition: var(--transition-smooth);
}

.affiliation-card:hover .aff-logo-wrap {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-gold);
    transform: scale(1.05);
}

.aff-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.affiliation-card h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-white);
    margin: 0 0 12px 0;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.affiliation-card p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin: 0;
}

/* 11. WHY CHOOSE SECTION */
.why-choose-section {
    background: var(--bg-black);
}

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

.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-smooth);
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-gold-hover);
    background: rgba(26,26,26,0.8);
}

.why-icon {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 24px;
}

.why-card h4 {
    font-size: 1.05rem;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-gray);
}

/* 12. SPONSORS PARTNERSHIP OPPORTUNITIES */
.partnership-section {
    background: var(--bg-darker);
}

.partnership-box {
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.9) 0%, rgba(30, 25, 10, 0.4) 100%);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 60px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    box-shadow: var(--shadow-gold), var(--shadow-soft);
}

.benefits-list {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-gray-light);
}

.benefits-list li i {
    color: var(--accent-gold);
}

.partnership-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.trophy-gold-glow {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid var(--border-gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.1);
    position: relative;
    animation: goldPulse 4s infinite ease-in-out;
}

.trophy-gold-glow .gold-icon {
    font-size: 4rem;
    color: var(--accent-gold);
}

.trophy-gold-glow span {
    font-family: var(--font-ui);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-white);
}

/* 13. MASONRY GALLERY */
.gallery-section {
    background: var(--bg-black);
}

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

.gallery-item-wrap {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    border: 1px solid var(--border-glass);
}

.gallery-item-wrap:nth-child(even) {
    aspect-ratio: 3 / 4;
}

/* Gallery Carousel Styles */
.gallery-carousel-wrapper {
    position: relative;
    padding: 0 60px;
    margin: 40px auto 0 auto;
}

.gallery-carousel-viewport {
    overflow: hidden;
    width: 100%;
}

.gallery-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 20px;
}

.gallery-slide {
    flex: 0 0 calc(33.333% - 13.333px);
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    border: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
}

.gallery-slide:hover {
    border-color: var(--border-gold-hover);
    box-shadow: var(--shadow-gold);
}

.gallery-slide:hover .gallery-hover-overlay {
    opacity: 1;
}

.gallery-slide:hover .gallery-img {
    transform: scale(1.08);
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(10, 10, 10, 0.8);
    border: 1px solid var(--border-glass);
    border-radius: 50%;
    color: var(--text-white);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
}

.carousel-control:hover {
    background: var(--accent-gold-gradient);
    border-color: transparent;
    color: var(--bg-black);
    box-shadow: var(--shadow-gold);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control.prev {
    left: 0;
}

.carousel-control.next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.carousel-dot.active {
    background: var(--accent-gold);
    width: 25px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

@media (max-width: 991px) {
    .gallery-slide {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 767px) {
    .gallery-slide {
        flex: 0 0 100%;
    }
    .gallery-carousel-wrapper {
        padding: 0 40px;
    }
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-item-wrap:hover .gallery-img {
    transform: scale(1.05);
}

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

.gallery-hover-overlay i {
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.gallery-hover-overlay span {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-white);
    text-transform: uppercase;
}

/* LIGHTBOX MODAL */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 5, 5, 0.95);
    z-index: 3000;
    display: none; /* Controlled by JS */
    align-items: center;
    justify-content: center;
}

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

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--text-gray);
    font-size: 3rem;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.lightbox-close:hover {
    color: var(--text-white);
}

.lightbox-content-wrap {
    max-width: 85%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
    border: 1px solid var(--border-glass);
}

.lightbox-caption {
    font-family: var(--font-ui);
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    margin-top: 20px;
    text-transform: uppercase;
}

/* 14. TESTIMONIALS SECTION */
.testimonials-section {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    position: relative;
    overflow: hidden;
}

.testimonials-slider-container {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    height: 240px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
}

.testimonial-quote {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-white);
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-details {
    text-align: left;
}

.author-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    display: block;
    color: var(--accent-gold);
}

.author-title {
    font-size: 0.8rem;
    color: var(--text-gray);
    display: block;
    margin-top: 2px;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.slider-btn {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-glass);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-btn:hover {
    background: var(--accent-gold);
    color: var(--bg-black);
    border-color: transparent;
}

.slider-indicators {
    display: flex;
    gap: 10px;
}

.indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--text-gray-dark);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.indicator-dot.active {
    background-color: var(--accent-gold);
    width: 24px;
    border-radius: 4px;
}

/* 15. NEWS & UPDATES (BLOG) */
.news-section {
    background: var(--bg-black);
}

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

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-gold-hover);
}

.blog-img-wrap {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.blog-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--bg-black);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    font-family: var(--font-ui);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    letter-spacing: 1px;
}

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

.blog-date {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    color: var(--accent-gold);
    margin-bottom: 12px;
    display: block;
}

.blog-content h4 {
    font-size: 1rem;
    margin-bottom: 12px;
    line-height: 1.4;
    color: var(--text-white);
}

.blog-content p {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--accent-gold);
    letter-spacing: 1px;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.read-more i {
    transition: transform 0.3s;
}

.blog-card:hover .read-more i {
    transform: translateX(5px);
}

/* 16. CONTACT SECTION & FORMS */
.contact-section {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-glass);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
}

.contact-info-col {
    padding-right: 20px;
}

.contact-sub {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.contact-detail-item {
    display: flex;
    gap: 20px;
}

.icon-wrap {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-glass);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.contact-detail-item h5 {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--text-white);
    margin-bottom: 6px;
}

.contact-detail-item p {
    font-size: 0.85rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.social-links-wrap h5 {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray-light);
    font-size: 0.95rem;
}

.social-icons a:hover {
    background: var(--accent-gold-gradient);
    color: var(--bg-black);
    transform: translateY(-3px);
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Contact Form UI */
.contact-form-col {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-gold), var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.form-container {
    position: relative;
    min-height: 400px;
}

.form-header-title {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: var(--text-white);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 15px;
}

.form-group-split {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    position: relative;
}

.form-group-split .form-group {
    margin-bottom: 0;
}

.form-group label {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-gray);
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-glass);
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-smooth);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-gray-dark);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-gold);
    background: rgba(255,255,255,0.04);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

/* Form Errors */
.form-group.error input,
.form-group.error textarea {
    border-color: var(--accent-red);
}

.error-msg {
    position: absolute;
    bottom: -18px;
    left: 0;
    color: var(--accent-red);
    font-size: 0.7rem;
    font-weight: 600;
    display: none;
}

.form-group.error .error-msg {
    display: block;
}

/* Success Feedback */
.form-feedback-success {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    display: none; /* Managed by JS class */
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.form-feedback-success.active {
    display: flex;
}

.feedback-icon {
    font-size: 4rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.form-feedback-success h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.form-feedback-success p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 80%;
    margin: 0 auto;
}

#contactForm.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* 17. PREMIUM FOOTER */
.premium-footer {
    background: var(--bg-black);
    border-top: 1px solid var(--border-glass);
}

.footer-top {
    padding: 80px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-brand-col .brand-bio {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-top: 20px;
    max-width: 320px;
}

.footer-links-col h4 {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 24px;
    color: var(--text-white);
}

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

.footer-links-col ul li a {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.footer-links-col ul li a:hover {
    color: var(--accent-gold);
    padding-left: 6px;
}

.footer-bottom {
    border-top: 1px solid var(--border-glass);
    padding: 30px 0;
    background: var(--bg-darker);
}

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

.copyright-text {
    font-size: 0.8rem;
    color: var(--text-gray-dark);
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-socials a {
    color: var(--text-gray);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-socials a:hover {
    color: var(--accent-gold);
}

/* 18. DYNAMIC ANIMATIONS & KEYFRAMES */
@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(229, 9, 20, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(229, 9, 20, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(229, 9, 20, 0); }
}

@keyframes scrollWheel {
    0% { opacity: 1; top: 8px; }
    50% { opacity: 0.3; top: 20px; }
    100% { opacity: 1; top: 8px; }
}

@keyframes goldPulse {
    0% { transform: scale(1); box-shadow: 0 0 30px rgba(212, 175, 55, 0.15); }
    50% { transform: scale(1.03); box-shadow: 0 0 60px rgba(212, 175, 55, 0.35); }
    100% { transform: scale(1); box-shadow: 0 0 30px rgba(212, 175, 55, 0.15); }
}

/* 18. NATIVE SCROLL REVEAL TIMINGS & CLASSES */
.js .reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.js .reveal-on-scroll.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll Delays */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* 18. DIVISION RANKINGS & LEADERSHIP SECTIONS */
.rankings-section {
    background: var(--bg-black);
    padding: 100px 0;
    border-top: 1px solid var(--border-glass);
}

.rankings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.ranking-division-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.ranking-division-card:hover {
    border-color: var(--border-gold-hover);
    box-shadow: var(--shadow-gold), var(--shadow-soft);
    transform: translateY(-5px);
}

.ranking-division-card h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ranking-table {
    width: 100%;
    border-collapse: collapse;
}

.ranking-table th {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-gray);
    text-align: left;
    padding: 8px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ranking-table td {
    padding: 12px;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    color: var(--text-gray-light);
}

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

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

.ranking-table td:first-child {
    font-weight: 700;
    color: var(--accent-gold);
    width: 100px;
}

.ranked-fighter-name {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-white);
}

.leadership-wrap {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid var(--border-glass);
    text-align: center;
}

.leadership-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-white);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.leader-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.leader-card:hover {
    border-color: var(--border-gold-hover);
    box-shadow: var(--shadow-gold), var(--shadow-soft);
    transform: translateY(-5px);
}

.leader-photo-wrap {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 2px solid var(--border-gold);
    transition: var(--transition-smooth);
}

.leader-card:hover .leader-photo-wrap {
    border-color: var(--accent-gold);
    transform: scale(1.05);
}

.leader-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-card h5 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 6px;
}

.leader-card span {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 19. RESPONSIVE DESIGN LAYERS (MOBILE-FIRST) */

/* Large Tablets & Small Desktops */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 30px;
    }
    
    .events-grid,
    .why-grid,
    .news-grid,
    .affiliations-grid,
    .rankings-grid,
    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .fighters-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .masonry-gallery {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small Tablets & Large Phones */
@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }
    
    .hero-section {
        height: auto;
        min-height: auto;
        padding-top: 140px;
        padding-bottom: 60px;
    }
    
    .main-header {
        padding: 5px 0;
    }
    
    .nav-menu {
        display: none; /* Burger trigger shown */
    }
    
    .mobile-nav-toggle {
        display: flex;
    }
    
    .header-ctas {
        margin-right: 15px;
    }
    
    .header-ctas .btn {
        display: none;
    }
    
    .hero-tagline {
        font-size: 0.8rem;
        letter-spacing: 2px;
        line-height: 1.5;
        margin-bottom: 16px;
        white-space: normal;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        justify-content: center;
        align-content: center;
        padding-top: 40px;
    }
    
    .hero-content {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-countdown-wrapper {
        justify-content: center;
        margin-top: 40px;
    }
    
    .countdown-card {
        max-width: 100%;
        padding: 20px 15px;
    }
    
    .ranking-division-card {
        padding: 20px 15px;
        overflow-x: auto;
        width: 100%;
        box-sizing: border-box;
    }
    
    .events-grid,
    .fighters-grid,
    .why-grid,
    .news-grid,
    .affiliations-grid,
    .mission-vision-grid,
    .rankings-grid,
    .leadership-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-grid,
    .partnership-box {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .partnership-box {
        padding: 40px 24px;
    }
    
    .video-mock-frame {
        height: 250px;
    }
    
    .partnership-visual {
        order: -1; /* visual on top for mobile */
    }
    
    .masonry-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-slider-container {
        height: 320px;
    }
    
    .footer-bottom-flex {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Small Phones */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .countdown-card {
        padding: 15px 10px;
    }

    .timer-grid {
        gap: 2px;
    }

    .timer-num {
        font-size: clamp(1.4rem, 5.5vw, 1.8rem);
    }
    
    .timer-colon {
        font-size: clamp(1rem, 3.5vw, 1.4rem);
        padding-bottom: 4px;
    }
    
    .event-actions {
        flex-direction: column;
    }
    
    .masonry-gallery {
        grid-template-columns: 1fr;
    }
    
    .testimonials-slider-container {
        height: 380px;
    }
    
    .video-mock-frame {
        height: 180px;
    }
    
    .form-group-split {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form-col {
        padding: 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
