:root {
            --bg-primary: #0a0a0c;
            --bg-surface: #141418;
            --bg-surface-hover: #1a1a1f;
            --bg-surface-elevated: #1e1e24;
            --red: #c41e3a;
            --red-glow: rgba(196, 30, 58, 0.3);
            --gold: #d4a843;
            --gold-glow: rgba(212, 168, 67, 0.15);
            --gold-bright: #e8c878;
            --text-primary: #ffffff;
            --text-secondary: #a0a0a8;
            --text-muted: #6b6b75;
            --border-subtle: rgba(255,255,255,0.06);
            --border-gold: rgba(212,168,67,0.3);
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.4);
            --shadow-md: 0 4px 20px rgba(0,0,0,0.5);
            --shadow-lg: 0 8px 40px rgba(0,0,0,0.6);
            --shadow-gold: 0 0 30px rgba(212,168,67,0.1);
            --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            --font-heading: 'Bebas Neue', sans-serif;
            --font-body: 'Inter', sans-serif;
            --font-mono: 'JetBrains Mono', monospace;
        }
        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: var(--font-body);
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }
        body::before {
            content: '';
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100%;
            pointer-events: none;
            z-index: 9999;
            opacity: 0.03;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
        }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
        .section-padding { padding: 80px 0; }
        /* Push first section below fixed navbar */
        body > .section-padding:first-of-type,
        body > section:first-of-type { padding-top: 140px; }
        .section-header {
            margin-bottom: 48px;
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 24px;
        }
        .section-title {
            font-family: var(--font-heading);
            font-size: clamp(2.5rem, 5vw, 4rem);
            letter-spacing: 0.02em;
            line-height: 1;
            position: relative;
            display: inline-block;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -8px; left: 0;
            width: 60px; height: 3px;
            background: linear-gradient(90deg, var(--gold), transparent);
            transition: width var(--transition-base);
        }
        .section-header:hover .section-title::after { width: 100px; }
        .view-all {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--gold);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            transition: gap var(--transition-fast);
        }
        .view-all:hover { gap: 12px; }
        .view-all svg { width: 16px; height: 16px; transition: transform var(--transition-fast); }
        .view-all:hover svg { transform: translateX(4px); }
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity var(--transition-slow), transform var(--transition-slow);
        }
        .reveal.active { opacity: 1; transform: translateY(0); }
        .stagger-children > * { opacity: 0; transform: translateY(20px); }
        .stagger-children.active > * { opacity: 1; transform: translateY(0); }
        .stagger-children.active > *:nth-child(1) { transition: opacity 0.5s 0.1s, transform 0.5s 0.1s; }
        .stagger-children.active > *:nth-child(2) { transition: opacity 0.5s 0.2s, transform 0.5s 0.2s; }
        .stagger-children.active > *:nth-child(3) { transition: opacity 0.5s 0.3s, transform 0.5s 0.3s; }
        .stagger-children.active > *:nth-child(4) { transition: opacity 0.5s 0.4s, transform 0.5s 0.4s; }

        /* Navbar */
        .navbar {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 1000;
            padding: 14px 0;
            transition: background var(--transition-base), padding var(--transition-base), backdrop-filter var(--transition-base);
        }
        .navbar.scrolled {
            background: rgba(10, 10, 12, 0.9);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            padding: 12px 0;
            border-bottom: 1px solid var(--border-subtle);
        }
        .navbar-inner { display: flex; align-items: center; justify-content: space-between; }
        .logo {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            color: var(--text-primary);
            text-decoration: none;
            letter-spacing: 0.05em;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .logo-img {
            height: 84px;
            width: auto;
        }
        .logo-text {
            font-family: var(--font-heading);
            font-size: 1.1rem;
            color: var(--text-primary);
            letter-spacing: 0.05em;
            white-space: nowrap;
        }
        .logo-icon {
            width: 40px; height: 40px;
            background: linear-gradient(135deg, var(--red), var(--gold));
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-heading);
            font-size: 1.4rem;
            color: white;
        }
        .nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            position: relative;
            padding: 4px 0;
            transition: color var(--transition-fast);
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0; left: 50%;
            width: 0; height: 2px;
            background: var(--gold);
            transition: width var(--transition-fast), left var(--transition-fast);
        }
        .nav-links a:hover { color: var(--text-primary); }
        .nav-links a:hover::after { width: 100%; left: 0; }
        .nav-cta {
            background: var(--red);
            color: white;
            padding: 10px 24px;
            border-radius: 6px;
            font-weight: 600;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            text-decoration: none;
            transition: all var(--transition-fast);
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        .nav-cta::before {
            content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 100%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }
        .nav-cta:hover::before { left: 100%; }
        .nav-cta:hover {
            background: #d62839;
            transform: translateY(-1px);
            box-shadow: 0 4px 20px var(--red-glow);
        }
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
        }
        .menu-toggle span {
            display: block;
            width: 24px; height: 2px;
            background: var(--text-primary);
            transition: all var(--transition-base);
            transform-origin: center;
        }
        .menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
        .menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
        .menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
        .mobile-nav {
            position: fixed;
            top: 0; right: -100%;
            width: 100%; max-width: 400px;
            height: 100vh;
            background: var(--bg-surface);
            z-index: 999;
            padding: 100px 40px 40px;
            transition: right var(--transition-slow);
            backdrop-filter: blur(30px);
        }
        .mobile-nav.active { right: 0; }
        .mobile-nav-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.7);
            backdrop-filter: blur(5px);
            z-index: 998;
            opacity: 0;
            pointer-events: none;
            transition: opacity var(--transition-base);
        }
        .mobile-nav-overlay.active { opacity: 1; pointer-events: all; }
        .mobile-nav-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
        .mobile-nav-links a {
            font-family: var(--font-heading);
            font-size: 2rem;
            color: var(--text-primary);
            text-decoration: none;
            display: block;
            opacity: 0;
            transform: translateX(20px);
            transition: opacity 0.3s, transform 0.3s, color var(--transition-fast);
        }
        .mobile-nav.active .mobile-nav-links a { opacity: 1; transform: translateX(0); }
        .mobile-nav.active .mobile-nav-links a:nth-child(1) { transition-delay: 0.1s; }
        .mobile-nav.active .mobile-nav-links a:nth-child(2) { transition-delay: 0.15s; }
        .mobile-nav.active .mobile-nav-links a:nth-child(3) { transition-delay: 0.2s; }
        .mobile-nav.active .mobile-nav-links a:nth-child(4) { transition-delay: 0.25s; }
        .mobile-nav.active .mobile-nav-links a:nth-child(5) { transition-delay: 0.3s; }
        .mobile-nav.active .mobile-nav-links a:nth-child(6) { transition-delay: 0.35s; }
        .mobile-nav-links a:hover { color: var(--gold); }

        /* Hero */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            padding-top: 80px;
        }
        .hero-bg {
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(ellipse at 20% 50%, rgba(196, 30, 58, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, rgba(212, 168, 67, 0.1) 0%, transparent 50%),
                linear-gradient(180deg, rgba(10,10,12,0.3) 0%, var(--bg-primary) 100%),
                url('https://images.unsplash.com/photo-1552072092-7f9b8d63efcb?w=1920&q=80') center/cover;
            filter: brightness(0.4) saturate(0.8);
        }
        .hero-bg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 50%, var(--bg-primary) 100%);
        }
        .hero-content { position: relative; z-index: 2; max-width: 700px; }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(196, 30, 58, 0.2);
            border: 1px solid rgba(196, 30, 58, 0.4);
            color: var(--red);
            padding: 8px 16px;
            border-radius: 100px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 24px;
            animation: pulse-badge 2s infinite;
        }
        @keyframes pulse-badge {
            0%, 100% { box-shadow: 0 0 0 0 rgba(196, 30, 58, 0.4); }
            50% { box-shadow: 0 0 20px 5px rgba(196, 30, 58, 0.2); }
        }
        .hero-badge .live-dot {
            width: 8px; height: 8px;
            background: var(--red);
            border-radius: 50%;
            animation: blink 1.5s infinite;
        }
        @keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
        .hero-title {
            font-family: var(--font-heading);
            font-size: clamp(3rem, 8vw, 6rem);
            line-height: 0.95;
            letter-spacing: 0.02em;
            margin-bottom: 16px;
            text-shadow: 0 4px 30px rgba(0,0,0,0.5);
        }
        .hero-title .highlight {
            background: linear-gradient(135deg, var(--gold), var(--gold-bright));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            margin-bottom: 32px;
            color: var(--text-secondary);
            font-size: 1rem;
        }
        .hero-meta-item { display: flex; align-items: center; gap: 8px; }
        .hero-meta-item svg { width: 18px; height: 18px; color: var(--gold); }
        .countdown { display: flex; gap: 16px; margin-bottom: 40px; }
        .countdown-item { text-align: center; min-width: 70px; }
        .countdown-value {
            font-family: var(--font-mono);
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1;
            color: var(--text-primary);
            background: var(--bg-surface);
            border: 1px solid var(--border-subtle);
            border-radius: 8px;
            padding: 12px 8px;
            display: block;
            margin-bottom: 8px;
            position: relative;
            overflow: hidden;
        }
        .countdown-value::after {
            content: '';
            position: absolute;
            top: 50%; left: 0; right: 0;
            height: 1px;
            background: var(--border-subtle);
        }
        .countdown-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: var(--text-muted);
        }
        .countdown-separator {
            font-family: var(--font-heading);
            font-size: 2rem;
            color: var(--gold);
            align-self: flex-start;
            padding-top: 12px;
        }
        .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 14px 32px;
            border-radius: 8px;
            font-family: var(--font-body);
            font-size: 0.95rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            text-decoration: none;
            cursor: pointer;
            transition: all var(--transition-fast);
            border: none;
            position: relative;
            overflow: hidden;
        }
        .btn-primary {
            background: var(--red);
            color: white;
            box-shadow: 0 4px 20px var(--red-glow);
        }
        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0; left: -100%;
            width: 100%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.6s;
        }
        .btn-primary:hover::before { left: 100%; }
        .btn-primary:hover {
            background: #d62839;
            transform: translateY(-2px);
            box-shadow: 0 8px 30px var(--red-glow);
        }
        .btn-secondary {
            background: transparent;
            color: var(--text-primary);
            border: 2px solid var(--border-subtle);
        }
        .btn-secondary:hover {
            border-color: var(--gold);
            color: var(--gold);
            background: var(--gold-glow);
        }
        .btn-outline {
            background: transparent;
            color: var(--text-secondary);
            border: 1px solid var(--border-subtle);
            font-size: 0.85rem;
            padding: 10px 24px;
            letter-spacing: 0.04em;
        }
        .btn-outline:hover {
            border-color: var(--red);
            color: var(--red);
            background: rgba(229,56,59,0.06);
        }
        .btn svg { width: 18px; height: 18px; transition: transform var(--transition-fast); }
        .btn:hover svg { transform: translateX(3px); }
        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            color: var(--text-muted);
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            animation: bounce 2s infinite;
        }
        @keyframes bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(10px); }
        }
        .scroll-indicator svg { width: 24px; height: 24px; }

        /* Fighter Cards */
        .fighters-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 24px;
        }
        .fighter-card {
            background: var(--bg-surface);
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
            transition: all var(--transition-base);
            position: relative;
            cursor: pointer;
        }
        .fighter-card:hover {
            transform: translateY(-8px);
            border-color: var(--border-gold);
            box-shadow: var(--shadow-gold), var(--shadow-lg);
        }
        .fighter-card.champion { position: relative; }
        .fighter-card.champion::before {
            content: '👑';
            position: absolute;
            top: 16px; right: 16px;
            z-index: 3;
            font-size: 1.5rem;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
        }
        .fighter-card.champion .fighter-image::after {
            content: '';
            position: absolute;
            inset: 0;
            border: 2px solid var(--gold);
            border-radius: 16px 16px 0 0;
            pointer-events: none;
        }
        .fighter-image {
            position: relative;
            aspect-ratio: 3/4;
            overflow: hidden;
        }
        .fighter-image img {
            width: 100%; height: 100%;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }
        .fighter-card:hover .fighter-image img { transform: scale(1.08); }
        .fighter-image::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(0deg, var(--bg-surface) 0%, transparent 60%);
            z-index: 1;
        }
        .fighter-flag {
            position: absolute;
            top: 16px; left: 16px;
            z-index: 2;
            width: 32px; height: 24px;
            border-radius: 4px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.4);
            border: 1px solid rgba(255,255,255,0.2);
        }
        .fighter-flag img { width: 100%; height: 100%; object-fit: cover; }
        .fighter-info {
            padding: 20px;
            position: relative;
            z-index: 2;
            margin-top: -60px;
        }
        .fighter-division {
            display: inline-block;
            background: var(--bg-surface-elevated);
            color: var(--gold);
            padding: 4px 12px;
            border-radius: 100px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 12px;
            border: 1px solid var(--border-subtle);
        }
        .fighter-name {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            line-height: 1;
            margin-bottom: 4px;
            letter-spacing: 0.02em;
        }
        .fighter-nickname {
            color: var(--text-muted);
            font-size: 0.9rem;
            font-style: italic;
            margin-bottom: 16px;
        }
        .fighter-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            padding-top: 16px;
            border-top: 1px solid var(--border-subtle);
        }
        .fighter-stat { text-align: center; }
        .fighter-stat-value {
            font-family: var(--font-mono);
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1;
        }
        .fighter-stat-label {
            font-size: 0.7rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-top: 4px;
        }
        .fighter-stat-value.wins { color: #4ade80; }
        .fighter-stat-value.losses { color: var(--red); }
        .fighter-stat-value.kos { color: var(--gold); }
        .fighter-overlay {
            position: absolute;
            inset: 0;
            background: rgba(10, 10, 12, 0.8);
            backdrop-filter: blur(4px);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity var(--transition-base);
            z-index: 2;
        }
        .fighter-card:hover .fighter-overlay { opacity: 1; }
        .fighter-overlay-btn {
            background: var(--gold);
            color: var(--bg-primary);
            padding: 12px 28px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            text-decoration: none;
            transform: translateY(20px);
            transition: transform var(--transition-base), background var(--transition-fast);
        }
        .fighter-card:hover .fighter-overlay-btn { transform: translateY(0); }
        .fighter-overlay-btn:hover { background: var(--gold-bright); }

        /* Events */
        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 24px;
        }
        .event-card {
            background: var(--bg-surface);
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
            transition: all var(--transition-base);
            position: relative;
        }
        .event-card:hover {
            transform: translateY(-4px);
            border-color: var(--border-gold);
            box-shadow: var(--shadow-md);
        }
        .event-card.featured {
            grid-column: 1 / -1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
        }
        @media (max-width: 768px) {
            .event-card.featured { grid-template-columns: 1fr; }
        }
        .event-image {
            position: relative;
            aspect-ratio: 16/9;
            overflow: hidden;
        }
        .event-card.featured .event-image {
            aspect-ratio: auto;
            min-height: 300px;
        }
        .event-image img {
            width: 100%; height: 100%;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }
        .event-card:hover .event-image img { transform: scale(1.05); }
        .event-image::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(0deg, var(--bg-surface) 0%, transparent 50%);
            z-index: 1;
        }
        .event-status {
            position: absolute;
            top: 16px; left: 16px;
            z-index: 2;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 14px;
            border-radius: 100px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .event-status.upcoming {
            background: rgba(212, 168, 67, 0.2);
            color: var(--gold);
            border: 1px solid var(--border-gold);
        }
        .event-status.live {
            background: rgba(196, 30, 58, 0.2);
            color: var(--red);
            border: 1px solid rgba(196, 30, 58, 0.4);
            animation: pulse-badge 2s infinite;
        }
        .event-info { padding: 24px; }
        .event-title {
            font-family: var(--font-heading);
            font-size: 1.6rem;
            line-height: 1.1;
            margin-bottom: 12px;
            letter-spacing: 0.02em;
        }
        .event-meta {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-bottom: 20px;
        }
        .event-meta-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        .event-meta-item svg {
            width: 16px; height: 16px;
            color: var(--gold);
            flex-shrink: 0;
        }
        .event-actions { display: flex; gap: 12px; }
        .event-actions .btn { padding: 10px 20px; font-size: 0.85rem; }

        /* News */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 24px;
        }
        .news-card {
            background: var(--bg-surface);
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid var(--border-subtle);
            transition: all var(--transition-base);
            display: flex;
            flex-direction: column;
        }
        .news-card:hover {
            transform: translateY(-4px);
            border-color: var(--border-gold);
            box-shadow: var(--shadow-md);
        }
        .news-card.featured {
            grid-column: 1 / -1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
        }
        @media (max-width: 768px) {
            .news-card.featured { grid-template-columns: 1fr; }
        }
        .news-image {
            position: relative;
            aspect-ratio: 16/10;
            overflow: hidden;
        }
        .news-card.featured .news-image {
            aspect-ratio: auto;
            min-height: 280px;
        }
        .news-image img {
            width: 100%; height: 100%;
            object-fit: cover;
            transition: transform var(--transition-slow);
        }
        .news-card:hover .news-image img { transform: scale(1.05); }
        .news-category {
            position: absolute;
            top: 16px; left: 16px;
            z-index: 2;
            padding: 6px 14px;
            border-radius: 100px;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }
        .news-category.announcement {
            background: rgba(212, 168, 67, 0.2);
            color: var(--gold);
            border: 1px solid var(--border-gold);
        }
        .news-category.spotlight {
            background: rgba(196, 30, 58, 0.2);
            color: var(--red);
            border: 1px solid rgba(196, 30, 58, 0.4);
        }
        .news-content {
            padding: 24px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .news-date {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .news-title {
            font-family: var(--font-heading);
            font-size: 1.4rem;
            line-height: 1.2;
            margin-bottom: 12px;
            letter-spacing: 0.02em;
            transition: color var(--transition-fast);
        }
        .news-card:hover .news-title { color: var(--gold); }
        .news-excerpt {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 20px;
            flex: 1;
        }
        .news-read-more {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--gold);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            transition: gap var(--transition-fast);
        }
        .news-read-more:hover { gap: 12px; }
        .news-read-more svg { width: 16px; height: 16px; }

        /* Rankings */
        .rankings-section {
            background: var(--bg-surface);
            position: relative;
            overflow: hidden;
        }
        .rankings-section::before {
            content: '';
            position: absolute;
            top: -50%; right: -20%;
            width: 600px; height: 600px;
            background: radial-gradient(circle, rgba(212,168,67,0.05) 0%, transparent 70%);
            pointer-events: none;
        }
        .rankings-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
        }
        .ranking-card {
            background: var(--bg-primary);
            border-radius: 12px;
            padding: 24px;
            border: 1px solid var(--border-subtle);
            transition: all var(--transition-base);
        }
        .ranking-card:hover {
            border-color: var(--border-gold);
            transform: translateY(-4px);
            box-shadow: var(--shadow-gold);
        }
        .ranking-division {
            font-family: var(--font-heading);
            font-size: 1.3rem;
            margin-bottom: 16px;
            color: var(--gold);
            letter-spacing: 0.02em;
        }
        .ranking-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 0;
            border-bottom: 1px solid var(--border-subtle);
        }
        .ranking-item:last-child { border-bottom: none; }
        .ranking-number {
            font-family: var(--font-mono);
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-muted);
            min-width: 28px;
        }
        .ranking-number.champion { color: var(--gold); }
        .ranking-fighter { flex: 1; }
        .ranking-name {
            font-weight: 600;
            font-size: 0.95rem;
            color: var(--text-primary);
        }
        .ranking-record {
            font-size: 0.8rem;
            color: var(--text-muted);
            font-family: var(--font-mono);
        }
        .ranking-trend {
            font-size: 0.75rem;
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: 600;
        }
        .ranking-trend.up { color: #4ade80; background: rgba(74, 222, 128, 0.1); }
        .ranking-trend.down { color: var(--red); background: rgba(196, 30, 58, 0.1); }
        .ranking-trend.stable { color: var(--text-muted); background: rgba(160, 160, 168, 0.1); }

        /* Footer */
        .footer {
            background: var(--bg-surface);
            border-top: 1px solid var(--border-subtle);
            padding: 60px 0 30px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }
        @media (max-width: 768px) {
            .footer-grid { grid-template-columns: 1fr 1fr; }
        }
        @media (max-width: 480px) {
            .footer-grid { grid-template-columns: 1fr; }
        }
        .footer-brand { max-width: 300px; }
        .footer-brand .logo { margin-bottom: 16px; }
        .footer-brand p {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.7;
        }
        .footer-title {
            font-family: var(--font-heading);
            font-size: 1.2rem;
            margin-bottom: 20px;
            letter-spacing: 0.02em;
        }
        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color var(--transition-fast);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .footer-links a:hover { color: var(--gold); }
        .footer-links a svg {
            width: 14px; height: 14px;
            opacity: 0;
            transition: opacity var(--transition-fast), transform var(--transition-fast);
        }
        .footer-links a:hover svg { opacity: 1; transform: translateX(4px); }
        .footer-bottom {
            border-top: 1px solid var(--border-subtle);
            padding-top: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }
        .footer-copyright { color: var(--text-muted); font-size: 0.85rem; }
        .footer-social { display: flex; gap: 16px; }
        .footer-social a {
            width: 40px; height: 40px;
            border-radius: 8px;
            background: var(--bg-surface-elevated);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-secondary);
            transition: all var(--transition-fast);
            border: 1px solid var(--border-subtle);
        }
        .footer-social a:hover {
            background: var(--gold);
            color: var(--bg-primary);
            border-color: var(--gold);
            transform: translateY(-2px);
        }
        .footer-social svg { width: 18px; height: 18px; }

        /* Responsive */
        @media (max-width: 1024px) {
            .nav-links { display: none; }
            .menu-toggle { display: flex; }
            .fighters-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
        }
        @media (max-width: 768px) {
            .section-padding { padding: 60px 0; }
            body > .section-padding:first-of-type,
            body > section:first-of-type { padding-top: 140px; }
            .logo-img { height: 60px; }
            .logo-text { font-size: 1.05rem; }
            .section-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 16px;
            }
            .hero-content { text-align: center; margin: 0 auto; }
            .countdown { justify-content: center; }
            .hero-actions { justify-content: center; }
            .hero-meta { justify-content: center; }
            .events-grid { grid-template-columns: 1fr; }
            .news-grid { grid-template-columns: 1fr; }
            .rankings-grid { grid-template-columns: 1fr; }
            .scroll-indicator { display: none; }
            .fighter-profile {
                grid-template-columns: 1fr !important;
                gap: 24px !important;
            }
            .fighter-profile-left { max-width: 100%; }
            .fighter-swipe-hint {
                display: flex;
                align-items: center;
                gap: 8px;
                padding: 12px 16px;
                margin-top: 8px;
                color: var(--red);
                font-size: 0.8rem;
                text-transform: uppercase;
                letter-spacing: 0.06em;
                animation: swipePulse 2s infinite;
            }
            .fighter-swipe-hint::after {
                content: '→';
                font-size: 1.1rem;
                animation: swipeArrow 1.5s infinite;
            }
            @keyframes swipePulse {
                0%, 100% { opacity: 0.6; }
                50% { opacity: 1; }
            }
            @keyframes swipeArrow {
                0%, 100% { transform: translateX(0); }
                50% { transform: translateX(6px); }
            }
            .record-display {
                flex-wrap: wrap;
                gap: 12px;
            }
        }
        @media (max-width: 480px) {
            .container { padding: 0 16px; }
            .countdown-item { min-width: 55px; }
            .countdown-value { font-size: 1.8rem; padding: 8px 4px; }
            .btn { padding: 12px 24px; font-size: 0.85rem; }
        }

        /* Skeleton */
        .skeleton {
            background: linear-gradient(90deg, var(--bg-surface) 25%, var(--bg-surface-hover) 50%, var(--bg-surface) 75%);
            background-size: 200% 100%;
            animation: skeleton-loading 1.5s infinite;
            border-radius: 8px;
        }
        @keyframes skeleton-loading {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }

/* ═══════════════════════════════════════════════
   HERO CAROUSEL
   ═══════════════════════════════════════════════ */
.hero-carousel { position: relative; width: 100%; min-height: 100vh; overflow: hidden; background: var(--bg-primary); }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s ease; z-index: 0; display: flex; align-items: center; }
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.05); transition: transform 8s ease; }
.hero-slide[data-index]:not([data-index="0"]) .hero-slide-bg { background-position: top center; }
.hero-slide.active .hero-slide-bg { transform: scale(1); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,12,0.3) 0%, rgba(10,10,12,0.15) 30%, rgba(10,10,12,0.75) 70%, var(--bg-primary) 100%); z-index: 2; }
.hero-overlay-left { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,10,12,0.92) 0%, rgba(10,10,12,0.6) 45%, rgba(10,10,12,0.15) 70%, transparent 100%); z-index: 2; }
/* Desktop: text left, image right */
.hero-carousel .hero-content { position: relative; z-index: 3; max-width: 520px; margin: 0 0 0 8%; padding: 120px 0 80px 0; width: auto; }
.hero-slide[data-index]:not([data-index="0"]) .hero-slide-bg { background-position: 68% center; }
.hero-slide .hero-title { animation: heroFadeUp 0.8s 0.15s ease both; }
.hero-slide .hero-meta { animation: heroFadeUp 0.8s 0.3s ease both; }
.hero-slide .countdown { animation: heroFadeUp 0.8s 0.4s ease both; }
.hero-slide .hero-actions { animation: heroFadeUp 0.8s 0.5s ease both; }
.hero-stats { display: flex; gap: 20px; animation: heroFadeUp 0.8s 0.5s ease both; }
.hero-stat { text-align: center; padding: 12px 20px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; backdrop-filter: blur(10px); }
.hero-stat-val { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 900; color: var(--red); line-height: 1; display: block; }
.hero-stat-label { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; display: block; }
@keyframes heroFadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-dots { position: absolute; bottom: 100px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 5; }
.hero-dot { width: 10px; height: 10px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.3); background: transparent; cursor: pointer; transition: all 0.3s ease; padding: 0; }
.hero-dot.active { background: var(--red); border-color: var(--red); box-shadow: 0 0 12px var(--red-glow); }
.hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.2); background: rgba(0,0,0,0.4); color: #fff; font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; z-index: 5; backdrop-filter: blur(4px); }
.hero-arrow:hover { background: var(--red); border-color: var(--red); box-shadow: 0 0 20px var(--red-glow); }
.hero-arrow-left { left: 24px; }
.hero-arrow-right { right: 24px; }
.hero-progress { position: absolute; bottom: 0; left: 0; height: 3px; background: var(--red); z-index: 5; transition: width 0.1s linear; }
@media (max-width: 768px) {
    .hero-carousel .hero-content { text-align: center; padding: 100px 24px 60px; margin: 0 auto; max-width: 100%; }
    .hero-stats { justify-content: center; }
    .hero-dots { bottom: 80px; }
    .hero-arrow { display: none; }
    .hero-slide[data-index]:not([data-index="0"]) .hero-slide-bg { background-position: top 55%; }
}