﻿/* ============================================================
   Home Landing Page - Desktop Styles
   CCE Platform
   ============================================================ */

/* Import Apex Black font */
@font-face {
    font-family: 'Apex';
    src: url('/static/fonts/Apex-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'URW Dock';
    src: url('/static/fonts/mainfont-cond-light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'URW Dock', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #000000;
            color: #ffffff;
            min-height: 100vh;
            overflow-x: hidden;
        }

        /* Animated background grid */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                linear-gradient(90deg, rgba(244, 1, 43, 0.03) 1px, transparent 1px),
                linear-gradient(rgba(244, 1, 43, 0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
            z-index: 0;
        }

        /* ==================== */
        /* Header               */
        /* ==================== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 80px;
            background: rgba(10, 10, 10, 0.9);
            backdrop-filter: blur(20px);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 40px;
            z-index: 1000;
            border-bottom: 1px solid rgba(244, 1, 43, 0.2);
        }

        .header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(244, 1, 43, 0.5), transparent);
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo {
            height: 55px;
            filter: drop-shadow(0 0 20px rgba(244, 1, 43, 0.3));
            transition: all 0.3s ease;
        }

        .logo:hover {
            filter: drop-shadow(0 0 30px rgba(244, 1, 43, 0.5));
            transform: scale(1.05);
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .auth-button {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            border-radius: 4px;
            font-size: 13px;
            font-weight: 700;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
        }

        .auth-button.login {
            background: transparent;
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .auth-button.login:hover {
            border-color: #f4012b;
            color: #f4012b;
            box-shadow: 0 0 20px rgba(244, 1, 43, 0.3);
        }

        .auth-button.signup {
            background: linear-gradient(135deg, #f4012b 0%, #b8011f 100%);
            color: white;
            border: none;
            clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
        }

        .auth-button.signup::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 ease;
        }

        .auth-button.signup:hover::before {
            left: 100%;
        }

        .auth-button.signup:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(244, 1, 43, 0.4);
        }

        /* Info Book Button */
        .auth-button.info-btn {
            background: transparent;
            color: rgba(255, 255, 255, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.15);
            padding: 12px 14px;
            font-size: 16px;
        }

        .auth-button.info-btn:hover {
            border-color: #f4012b;
            color: #f4012b;
            box-shadow: 0 0 20px rgba(244, 1, 43, 0.3);
        }

        .auth-button.info-btn.active {
            background: rgba(244, 1, 43, 0.15);
            border-color: #f4012b;
            color: #f4012b;
            box-shadow: 0 0 15px rgba(244, 1, 43, 0.25);
        }

        /* ==================== */
        /* Main Content         */
        /* ==================== */
        .main-content {
            margin-top: 80px;
            padding: 0;
            position: relative;
            z-index: 1;
        }

        /* ==================== */
        /* Hero Section         */
        /* ==================== */
        .hero-section {
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            padding: 0;
        }

        /* Video Background */
        .hero-video-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -3;
            overflow: hidden;
        }

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

        /* Dark overlay - gradient from left for text readability */
        .hero-video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.4) 100%);
            z-index: -2;
        }

        /* Bottom fade into background */
        .hero-video-fade {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 350px;
            background: linear-gradient(to bottom, transparent, #000000);
            z-index: -1;
            pointer-events: none;
        }

        /* Decorative elements */
        .hero-section::before {
            content: '';
            position: absolute;
            top: 20%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(244, 1, 43, 0.15) 0%, transparent 70%);
            animation: float-orb 8s ease-in-out infinite;
            z-index: -1;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            bottom: 30%;
            right: -5%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(244, 1, 43, 0.1) 0%, transparent 70%);
            animation: float-orb 6s ease-in-out infinite reverse;
            z-index: -1;
        }

        @keyframes float-orb {
            0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
            50% { transform: translate(30px, -30px) scale(1.1); opacity: 0.8; }
        }

        /* Hero Content - Left aligned, no box */
        .hero-content {
            position: relative;
            z-index: 1;
            width: 100%;
            max-width: 1400px;
            padding: 0 60px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        /* Animated accent line */
        .hero-accent-line {
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #f4012b, #ff4444);
            margin-bottom: 24px;
            position: relative;
            overflow: hidden;
        }

        .hero-accent-line::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
            animation: shimmer 2s infinite;
        }

        @keyframes shimmer {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(244, 1, 43, 0.1);
            border: 1px solid rgba(244, 1, 43, 0.4);
            color: #f4012b;
            padding: 10px 20px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 30px;
            clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
            backdrop-filter: blur(10px);
        }

        .hero-badge i {
            font-size: 14px;
            animation: pulse-icon 2s ease-in-out infinite;
        }

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

        .hero-logo {
            height: 160px;
            width: auto;
            margin-bottom: 24px;
            filter: drop-shadow(0 0 60px rgba(244, 1, 43, 0.5));
            animation: logo-float 4s ease-in-out infinite;
        }

        @keyframes logo-float {
            0%, 100% {
                transform: translateY(0);
                filter: drop-shadow(0 0 60px rgba(244, 1, 43, 0.5));
            }
            50% {
                transform: translateY(-10px);
                filter: drop-shadow(0 0 80px rgba(244, 1, 43, 0.7));
            }
        }

        .hero-title-wrapper {
            margin-bottom: 28px;
        }

        .hero-subtitle {
            font-family: 'Apex', sans-serif;
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            color: #ffffff;
            letter-spacing: 4px;
            text-transform: uppercase;
            line-height: 1.1;
            text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
            margin: 0;
        }

        .hero-subtitle .highlight {
            background: linear-gradient(135deg, #f4012b 0%, #ff6b6b 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
        }

        .hero-description {
            font-size: clamp(1rem, 2vw, 1.25rem);
            color: rgba(255, 255, 255, 0.75);
            max-width: 550px;
            line-height: 1.8;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
            margin-bottom: 40px;
            border-left: 2px solid rgba(244, 1, 43, 0.5);
            padding-left: 20px;
        }

        /* CTA Buttons - stacked with different styles */
        .hero-cta {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            align-items: center;
        }

        .hero-cta .cta-button {
            padding: 18px 40px;
            font-size: 14px;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
            position: relative;
            overflow: hidden;
        }

        .hero-cta .cta-button.cta-signup {
            background: linear-gradient(135deg, #f4012b 0%, #b8011f 100%);
            clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
        }

        .hero-cta .cta-button.cta-signup::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 ease;
        }

        .hero-cta .cta-button.cta-signup:hover::before {
            left: 100%;
        }

        .hero-cta .cta-button.cta-signup:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(244, 1, 43, 0.4);
        }

        .hero-cta .cta-secondary {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: #fff;
            backdrop-filter: blur(10px);
            clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 15px 100%, 0 calc(100% - 15px));
        }

        .hero-cta .cta-secondary:hover {
            border-color: #f4012b;
            background: rgba(244, 1, 43, 0.1);
        }

        /* Stats floating cards */
        .hero-floating-stats {
            position: absolute;
            right: 60px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 20px;
            z-index: 2;
        }

        .floating-stat {
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 20px 30px;
            text-align: center;
            position: relative;
            clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
            animation: float-stat 5s ease-in-out infinite;
        }

        .floating-stat:nth-child(1) { animation-delay: 0s; }
        .floating-stat:nth-child(2) { animation-delay: 0.5s; }
        .floating-stat:nth-child(3) { animation-delay: 1s; }

        @keyframes float-stat {
            0%, 100% { transform: translateX(0); }
            50% { transform: translateX(-10px); }
        }

        .floating-stat::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 3px;
            height: 100%;
            background: linear-gradient(180deg, #f4012b, transparent);
        }

        .floating-stat-value {
            font-family: 'Apex', sans-serif;
            font-size: 2rem;
            background: linear-gradient(135deg, #f4012b 0%, #ff6b6b 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
        }

        .floating-stat-label {
            font-size: 0.7rem;
            color: rgba(255, 255, 255, 0.5);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-top: 4px;
        }

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

        .scroll-indicator span {
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 4px;
            color: rgba(255, 255, 255, 0.4);
            font-weight: 600;
        }

        .scroll-indicator .scroll-line {
            width: 1px;
            height: 60px;
            background: linear-gradient(to bottom, rgba(244, 1, 43, 0.8), transparent);
            position: relative;
            overflow: hidden;
        }

        .scroll-indicator .scroll-line::after {
            content: '';
            position: absolute;
            top: -20px;
            left: 0;
            width: 100%;
            height: 20px;
            background: #f4012b;
            animation: scroll-down 1.5s ease-in-out infinite;
        }

        @keyframes scroll-down {
            0% { top: -20px; opacity: 0; }
            50% { opacity: 1; }
            100% { top: 60px; opacity: 0; }
        }

        /* Responsive Hero */
        @media (max-width: 1200px) {
            .hero-floating-stats {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .hero-content {
                padding: 0 24px;
                align-items: center;
                text-align: center;
            }

            .hero-accent-line {
                margin: 0 auto 24px;
            }

            .hero-description {
                border-left: none;
                padding-left: 0;
                border-top: 2px solid rgba(244, 1, 43, 0.5);
                padding-top: 20px;
            }

            .hero-logo {
                height: 120px;
            }

            .hero-cta {
                flex-direction: column;
                width: 100%;
            }

            .hero-cta .cta-button {
                width: 100%;
                justify-content: center;
            }

            .scroll-indicator {
                bottom: 20px;
            }
        }

        .cta-signup {
            background: linear-gradient(135deg, #f4012b 0%, #b8011f 100%);
            color: white;
            border: none;
            font-family: 'Apex', sans-serif;
            clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
        }

        .cta-signup::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 ease;
        }

        .cta-signup:hover::before {
            left: 100%;
        }

        .cta-signup:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(244, 1, 43, 0.5);
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 60px;
        }

        .cta-button {
            padding: 18px 40px;
            font-size: 14px;
            font-weight: 700;
            border-radius: 4px;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 12px;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            overflow: hidden;
        }

        .cta-primary {
            background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
            color: white;
            border: none;
            font-family: 'Apex', sans-serif;
            clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
        }

        .cta-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 ease;
        }

        .cta-primary:hover::before {
            left: 100%;
        }

        .cta-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(88, 101, 242, 0.5);
        }

        .cta-primary i {
            font-size: 1.3rem;
        }

        .cta-secondary {
            background: transparent;
            color: rgba(255, 255, 255, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.2);
            clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
        }

        .cta-secondary:hover {
            border-color: rgba(255, 255, 255, 0.5);
            color: #fff;
            background: rgba(255, 255, 255, 0.05);
        }

        /* ==================== */
        /* Stats Section        */
        /* ==================== */
        .stats-section {
            display: flex;
            justify-content: center;
            gap: 80px;
            flex-wrap: wrap;
            padding: 60px 32px;
            background: linear-gradient(180deg, rgba(244, 1, 43, 0.05) 0%, transparent 100%);
            border-top: 1px solid rgba(244, 1, 43, 0.1);
            border-bottom: 1px solid rgba(244, 1, 43, 0.1);
            position: relative;
        }

        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(244, 1, 43, 0.5), transparent);
        }

        .stat-item {
            text-align: center;
            position: relative;
        }

        .stat-value {
            font-family: 'Apex', sans-serif;
            font-size: 3.5rem;
            background: linear-gradient(135deg, #f4012b 0%, #ff6666 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 2px;
            display: block;
            filter: drop-shadow(0 0 20px rgba(244, 1, 43, 0.3));
        }

        .stat-value .counter {
            display: inline-block;
        }

        .stat-label {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.5);
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-top: 8px;
            font-weight: 600;
        }

        /* ==================== */
        /* Section Styling      */
        /* ==================== */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .section-title {
            font-family: 'Apex', sans-serif;
            font-size: 2.5rem;
            color: #fff;
            letter-spacing: 6px;
            margin-bottom: 16px;
            text-transform: uppercase;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #f4012b, #ff4444);
        }

        .section-subtitle {
            color: rgba(255, 255, 255, 0.5);
            font-size: 1rem;
            letter-spacing: 2px;
            margin-top: 20px;
        }

        /* ================================ */
        /* Info Link Buttons - Unique Styles */
        /* ================================ */

        /* Base info link */
        .info-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 0.8rem;
            text-decoration: none;
            transition: all 0.25s ease;
        }

        /* 1. Matchmaking Section - Red Pill Button */
        .info-link-red {
            color: #fff;
            background: linear-gradient(135deg, #f4012b 0%, #b8011f 100%);
            padding: 10px 20px;
            border-radius: 20px;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(244, 1, 43, 0.3);
        }

        .info-link-red:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(244, 1, 43, 0.5);
        }

        .info-link-red i {
            font-size: 0.75rem;
        }

        /* 2. Features Section - Subtle Text Link */
        .info-link-ghost {
            color: rgba(255, 255, 255, 0.5);
            padding: 8px 0;
            border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
        }

        .info-link-ghost:hover {
            color: #fff;
            border-bottom-color: #fff;
        }

        .info-link-ghost i {
            font-size: 0.7rem;
            transition: transform 0.2s;
        }

        .info-link-ghost:hover i {
            transform: translateX(3px);
        }

        /* 3. Division Cards - Inside Card Buttons */
        .info-link-division {
            color: rgba(255, 255, 255, 0.6);
            padding: 8px 14px;
            border-radius: 4px;
            font-size: 0.7rem;
            margin-top: 16px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .info-link-division.open {
            background: rgba(244, 1, 43, 0.1);
            border: 1px solid rgba(244, 1, 43, 0.3);
        }

        .info-link-division.open:hover {
            background: rgba(244, 1, 43, 0.2);
            color: #f4012b;
        }

        .info-link-division.lower {
            background: rgba(0, 180, 216, 0.1);
            border: 1px solid rgba(0, 180, 216, 0.3);
        }

        .info-link-division.lower:hover {
            background: rgba(0, 180, 216, 0.2);
            color: #00b4d8;
        }

        /* 4. Stats Section - Teal/Cyan Accent */
        .info-link-stats {
            color: #00b4d8;
            background: rgba(0, 180, 216, 0.1);
            border: 1px solid rgba(0, 180, 216, 0.3);
            padding: 10px 18px;
            border-radius: 6px;
        }

        .info-link-stats:hover {
            background: rgba(0, 180, 216, 0.2);
            box-shadow: 0 0 20px rgba(0, 180, 216, 0.3);
        }

        /* 5. Fair Play Section - Warning/Security Badge */
        .info-link-security {
            color: #10b981;
            background: rgba(16, 185, 129, 0.1);
            border: 1px solid rgba(16, 185, 129, 0.3);
            padding: 10px 18px;
            border-radius: 6px;
        }

        .info-link-security:hover {
            background: rgba(16, 185, 129, 0.2);
            box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
        }

        /* 6. FAQ Section - Minimal Arrow Link */
        .info-link-minimal {
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.75rem;
            padding: 6px 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 4px;
        }

        .info-link-minimal:hover {
            color: #fff;
            border-color: rgba(255, 255, 255, 0.3);
        }

        /* Section positioning helpers */
        .section-info-link {
            text-align: center;
            margin-top: 24px;
        }

        .section-info-link.right {
            text-align: right;
        }

        .section-info-link.left {
            text-align: left;
        }

        /* ==================== */
        /* Features Section     */
        /* ==================== */
        .features-section {
            padding: 40px 32px 80px;
            max-width: 1300px;
            margin: 0 auto;
            position: relative;
        }

        .features-intro {
            margin-bottom: 40px;
        }

        .features-label {
            display: inline-block;
            color: #f4012b;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 8px;
        }

        .features-headline {
            font-family: 'URW Dock', sans-serif;
            font-size: 2rem;
            font-weight: 600;
            color: #fff;
            margin: 0;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

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

        @media (max-width: 700px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .features-grid {
                grid-template-columns: 1fr;
            }
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.02);
            padding: 32px 20px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            min-height: 200px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .feature-card-link {
            text-decoration: none;
            display: flex;
            flex-direction: column;
            justify-content: center;
            color: inherit;
            cursor: pointer;
        }

        .feature-card:hover {
            border-color: rgba(244, 1, 43, 0.3);
            background: rgba(244, 1, 43, 0.05);
            transform: translateY(-4px);
        }

        .feature-icon {
            width: 56px;
            height: 56px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, rgba(244, 1, 43, 0.15) 0%, rgba(244, 1, 43, 0.05) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .feature-icon i {
            font-size: 1.5rem;
            color: #f4012b;
        }

        .feature-title {
            font-family: 'Apex', sans-serif;
            font-size: 0.9rem;
            color: #fff;
            margin-bottom: 10px;
            letter-spacing: 1px;
        }

        .feature-description {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.4);
            line-height: 1.5;
        }

        .feature-badge {
            display: inline-block;
            background: rgba(16, 185, 129, 0.15);
            color: #10b981;
            padding: 4px 8px;
            border-radius: 3px;
            font-size: 0.6rem;
            font-weight: 700;
            text-transform: uppercase;
            margin-top: 12px;
            letter-spacing: 0.5px;
        }

        .feature-badge.coming-soon {
            background: rgba(245, 158, 11, 0.15);
            color: #f59e0b;
        }

        /* ============================= */
        /* Divisions Section             */
        /* ============================= */
        .divisions-section {
            padding: 80px 32px;
            background: linear-gradient(180deg, rgba(10, 10, 10, 0.5) 0%, transparent 100%);
            position: relative;
        }

        .divisions-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(244, 1, 43, 0.3), transparent);
        }

        .divisions-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .divisions-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .divisions-label {
            display: inline-block;
            color: #f4012b;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 12px;
        }

        .divisions-headline {
            font-family: 'Apex', sans-serif;
            font-size: 2.25rem;
            font-weight: 600;
            color: #fff;
            margin: 0 0 12px 0;
        }

        .divisions-subtext {
            color: rgba(255, 255, 255, 0.5);
            font-size: 1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .divisions-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }

        @media (max-width: 700px) {
            .divisions-grid {
                grid-template-columns: 1fr;
            }
        }

        .division-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 32px;
            position: relative;
            transition: all 0.3s ease;
        }

        .division-card:hover {
            border-color: rgba(255, 255, 255, 0.15);
            transform: translateY(-4px);
        }

        .division-card.open {
            border-color: rgba(244, 1, 43, 0.3);
        }

        .division-card.open:hover {
            border-color: rgba(244, 1, 43, 0.5);
            box-shadow: 0 10px 40px rgba(244, 1, 43, 0.15);
        }

        .division-card.lower {
            border-color: rgba(0, 180, 216, 0.3);
        }

        .division-card.lower:hover {
            border-color: rgba(0, 180, 216, 0.5);
            box-shadow: 0 10px 40px rgba(0, 180, 216, 0.15);
        }

        .division-icon {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .division-card.open .division-icon {
            background: linear-gradient(135deg, rgba(244, 1, 43, 0.2) 0%, rgba(244, 1, 43, 0.05) 100%);
        }

        .division-card.open .division-icon i {
            color: #f4012b;
            font-size: 1.5rem;
        }

        .division-card.lower .division-icon {
            background: linear-gradient(135deg, rgba(0, 180, 216, 0.2) 0%, rgba(0, 180, 216, 0.05) 100%);
        }

        .division-card.lower .division-icon i {
            color: #00b4d8;
            font-size: 1.5rem;
        }

        .division-title {
            font-family: 'Apex', sans-serif;
            font-size: 1.25rem;
            color: #fff;
            margin-bottom: 8px;
            letter-spacing: 1px;
        }

        .division-subtitle {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.4);
            margin-bottom: 20px;
        }

        .division-features {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .division-features li {
            display: flex;
            align-items: center;
            gap: 10px;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.85rem;
            margin-bottom: 10px;
        }

        .division-features li i {
            font-size: 0.75rem;
            width: 16px;
        }

        .division-card.open .division-features li i {
            color: #f4012b;
        }

        .division-card.lower .division-features li i {
            color: #00b4d8;
        }

        .division-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            padding: 6px 12px;
            border-radius: 4px;
            font-size: 0.65rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .division-card.open .division-badge {
            background: rgba(244, 1, 43, 0.15);
            color: #f4012b;
        }

        .division-card.lower .division-badge {
            background: rgba(0, 180, 216, 0.15);
            color: #00b4d8;
        }

        /* ============================= */
        /* Why Compete Section (New)     */
        /* ============================= */
        .why-compete-section {
            padding: 80px 32px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .why-compete-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 80px;
        }

        .why-compete-row:last-child {
            margin-bottom: 0;
        }

        .why-compete-row.reverse {
            direction: rtl;
        }

        .why-compete-row.reverse > * {
            direction: ltr;
        }

        @media (max-width: 800px) {
            .why-compete-row {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .why-compete-row.reverse {
                direction: ltr;
            }
        }

        .why-compete-visual {
            background: transparent;
            border: none;
            border-radius: 0;
            padding: 0;
            aspect-ratio: auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: visible;
            min-height: 400px;
        }

        /* Stats Visual - Floating UI Effect */
        .stats-visual {
            background: transparent !important;
            border: none !important;
        }

        .stats-visual .profile-stats-snippet {
            transform: perspective(1000px) rotateY(-5deg) scale(1.1);
            transform-origin: center center;
            box-shadow:
                0 25px 80px rgba(244, 1, 43, 0.2),
                0 0 60px rgba(244, 1, 43, 0.1),
                inset 0 0 30px rgba(244, 1, 43, 0.05);
            border: 1px solid rgba(244, 1, 43, 0.4);
            position: relative;
            z-index: 2;
        }

        .stats-visual::before {
            content: '';
            position: absolute;
            top: -20px;
            right: -40px;
            width: 120%;
            height: 120%;
            background: radial-gradient(ellipse at center, rgba(244, 1, 43, 0.08) 0%, transparent 70%);
            z-index: 1;
            pointer-events: none;
        }

        /* Report Visual - Floating UI Effect */
        .report-visual {
            background: transparent !important;
            border: none !important;
        }

        .report-visual .investigation-board {
            transform: perspective(1000px) rotateY(5deg) scale(1.1);
            transform-origin: center center;
            box-shadow:
                0 25px 80px rgba(16, 185, 129, 0.2),
                0 0 60px rgba(16, 185, 129, 0.1),
                inset 0 0 30px rgba(16, 185, 129, 0.05);
            border: 1px solid rgba(16, 185, 129, 0.4);
            position: relative;
            z-index: 2;
        }

        .report-visual::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -40px;
            width: 120%;
            height: 120%;
            background: radial-gradient(ellipse at center, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
            z-index: 1;
            pointer-events: none;
        }

        @media (max-width: 900px) {
            .stats-visual .profile-stats-snippet,
            .report-visual .investigation-board {
                transform: perspective(1000px) rotateY(0deg) scale(1);
            }
        }

        .stats-visual .visual-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        /* Profile Stats Snippet Styles */
        .profile-stats-snippet {
            width: 100%;
            max-width: 420px;
            background: linear-gradient(180deg, rgba(20, 20, 20, 0.98) 0%, rgba(10, 10, 10, 0.98) 100%);
            border: 1px solid rgba(244, 1, 43, 0.3);
            border-radius: 16px;
            padding: 24px;
            backdrop-filter: blur(10px);
        }

        .stats-snippet-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .snippet-player-info {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .snippet-avatar {
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, #f4012b, #b8011f);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1.2rem;
        }

        .snippet-player-name {
            display: flex;
            flex-direction: column;
        }

        .snippet-username {
            font-family: 'Apex', sans-serif;
            font-size: 1rem;
            color: #fff;
            letter-spacing: 1px;
        }

        .snippet-rank {
            font-size: 0.75rem;
            color: #fbbf24;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .snippet-rank i {
            font-size: 0.65rem;
        }

        .snippet-points-badge {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
        }

        .snippet-points-badge .points-value {
            font-family: 'Apex', sans-serif;
            font-size: 1.2rem;
            color: #f4012b;
        }

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

        .stats-snippet-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 8px;
            margin-bottom: 20px;
        }

        .snippet-stat {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 8px;
            padding: 12px 8px;
            text-align: center;
            transition: all 0.2s ease;
        }

        .snippet-stat:hover {
            border-color: rgba(244, 1, 43, 0.3);
            background: rgba(244, 1, 43, 0.05);
        }

        .snippet-stat-icon {
            color: #f4012b;
            font-size: 0.9rem;
            margin-bottom: 6px;
        }

        .snippet-stat-value {
            font-family: 'Apex', sans-serif;
            font-size: 0.95rem;
            color: #fff;
            margin-bottom: 2px;
        }

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

        .stats-snippet-chart {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 8px;
            padding: 12px;
        }

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

        .chart-title {
            font-size: 0.7rem;
            color: rgba(255, 255, 255, 0.6);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .chart-trend {
            font-size: 0.7rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .chart-trend.positive {
            color: #10b981;
        }

        .chart-trend.negative {
            color: #ef4444;
        }

        .mini-chart {
            width: 100%;
        }

        .mini-chart svg.chart-line {
            width: 100%;
            height: 50px;
        }

        .chart-labels {
            display: flex;
            justify-content: space-between;
            margin-top: 6px;
        }

        .chart-labels span {
            font-size: 0.6rem;
            color: rgba(255, 255, 255, 0.4);
        }

        @media (max-width: 480px) {
            .stats-snippet-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .profile-stats-snippet {
                max-width: 100%;
            }
        }

        .visual-stat {
            background: rgba(59, 130, 246, 0.1);
            border: 1px solid rgba(59, 130, 246, 0.2);
            border-radius: 12px;
            padding: 24px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
        }

        .visual-stat i {
            font-size: 1.5rem;
            color: #3b82f6;
        }

        .visual-stat span {
            font-family: 'Apex', sans-serif;
            font-size: 1.5rem;
            color: #fff;
        }

        .shield-visual {
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(16, 185, 129, 0.02));
            border-color: rgba(16, 185, 129, 0.2);
        }

        .shield-icon-large {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
        }

        .shield-icon-large i {
            font-size: 3rem;
            color: #10b981;
        }

        .shield-stats {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .shield-stats span {
            background: rgba(16, 185, 129, 0.15);
            color: #10b981;
            padding: 8px 14px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        /* Report System Mockup Styles */
        /* (report-visual styles now in floating UI section above) */

        /* Investigation Board Styles */
        .investigation-board {
            width: 100%;
            max-width: 400px;
            background: linear-gradient(180deg, rgba(20, 20, 20, 0.98) 0%, rgba(10, 10, 10, 0.98) 100%);
            border: 1px solid rgba(16, 185, 129, 0.3);
            border-radius: 16px;
            overflow: hidden;
            backdrop-filter: blur(10px);
        }

        .inv-board-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 16px;
            background: linear-gradient(90deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.05) 100%);
            border-bottom: 1px solid rgba(16, 185, 129, 0.2);
        }

        .inv-board-title {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #10b981;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .inv-board-status {
            display: flex;
            align-items: center;
            gap: 6px;
            color: #10b981;
            font-size: 0.65rem;
            font-weight: 600;
        }

        .status-dot {
            width: 8px;
            height: 8px;
            background: #10b981;
            border-radius: 50%;
            animation: pulse-dot 1.5s ease-in-out infinite;
        }

        @keyframes pulse-dot {
            0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
            50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
        }

        .inv-board-case {
            padding: 16px;
        }

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

        .case-id {
            font-family: 'Apex', sans-serif;
            font-size: 0.8rem;
            color: #fff;
            letter-spacing: 1px;
        }

        .case-priority {
            font-size: 0.55rem;
            font-weight: 700;
            padding: 4px 8px;
            border-radius: 3px;
            letter-spacing: 0.5px;
        }

        .case-priority.high {
            background: rgba(244, 1, 43, 0.2);
            color: #f4012b;
            border: 1px solid rgba(244, 1, 43, 0.4);
        }

        .case-player {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 8px;
            margin-bottom: 12px;
        }

        .case-avatar {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, rgba(244, 1, 43, 0.3) 0%, rgba(244, 1, 43, 0.1) 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #f4012b;
            font-size: 1rem;
        }

        .case-info {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .case-name {
            font-size: 0.85rem;
            font-weight: 600;
            color: #fff;
        }

        .case-meta {
            font-size: 0.65rem;
            color: rgba(255, 255, 255, 0.4);
        }

        .case-evidence {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-bottom: 14px;
        }

        .evidence-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 12px;
            border-radius: 6px;
            font-size: 0.7rem;
            font-weight: 500;
        }

        .evidence-item.critical {
            background: rgba(244, 1, 43, 0.1);
            border: 1px solid rgba(244, 1, 43, 0.3);
            color: #f4012b;
        }

        .evidence-item.warning {
            background: rgba(251, 191, 36, 0.1);
            border: 1px solid rgba(251, 191, 36, 0.3);
            color: #fbbf24;
        }

        .evidence-item i {
            font-size: 0.8rem;
        }

        .case-actions {
            display: flex;
            gap: 8px;
        }

        .action-btn {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 10px 8px;
            border: none;
            border-radius: 6px;
            font-size: 0.65rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.2s;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .action-btn.ban {
            background: linear-gradient(135deg, #f4012b 0%, #b8011f 100%);
            color: #fff;
        }

        .action-btn.ban:hover {
            box-shadow: 0 0 20px rgba(244, 1, 43, 0.5);
            transform: translateY(-2px);
        }

        .action-btn.suspend {
            background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(251, 191, 36, 0.1) 100%);
            border: 1px solid rgba(251, 191, 36, 0.4);
            color: #fbbf24;
        }

        .action-btn.suspend:hover {
            background: rgba(251, 191, 36, 0.3);
        }

        .action-btn.close {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: rgba(255, 255, 255, 0.6);
        }

        .action-btn.close:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
        }

        .inv-board-footer {
            display: flex;
            justify-content: space-around;
            padding: 12px 16px;
            background: rgba(0, 0, 0, 0.3);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .inv-stat {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2px;
        }

        .inv-stat-value {
            font-family: 'Apex', sans-serif;
            font-size: 0.9rem;
            color: #10b981;
        }

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

        .report-mockup-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            width: 100%;
        }

        @media (max-width: 600px) {
            .report-mockup-container {
                flex-direction: column;
            }
            .report-arrow {
                transform: rotate(90deg);
            }
        }

        .report-mockup {
            background: rgba(0, 0, 0, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            width: 160px;
            overflow: hidden;
        }

        .mockup-header {
            background: rgba(244, 1, 43, 0.2);
            border-bottom: 1px solid rgba(244, 1, 43, 0.3);
            padding: 8px 10px;
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 0.7rem;
            font-weight: 600;
            color: #f4012b;
        }

        .mockup-header.admin {
            background: rgba(16, 185, 129, 0.2);
            border-bottom-color: rgba(16, 185, 129, 0.3);
            color: #10b981;
        }

        .mockup-header i {
            font-size: 0.65rem;
        }

        .mockup-body {
            padding: 10px;
        }

        .mockup-field {
            margin-bottom: 8px;
        }

        .field-label {
            display: block;
            font-size: 0.55rem;
            color: rgba(255, 255, 255, 0.4);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 2px;
        }

        .field-value {
            display: block;
            font-size: 0.65rem;
            color: rgba(255, 255, 255, 0.8);
            background: rgba(255, 255, 255, 0.05);
            padding: 4px 6px;
            border-radius: 4px;
        }

        .mockup-submit {
            background: rgba(16, 185, 129, 0.2);
            color: #10b981;
            padding: 6px;
            border-radius: 4px;
            font-size: 0.6rem;
            text-align: center;
            font-weight: 600;
            margin-top: 8px;
        }

        .mockup-submit i {
            margin-right: 4px;
        }

        .report-arrow {
            color: rgba(255, 255, 255, 0.3);
            font-size: 1.2rem;
        }

        .investigation-item {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 6px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 4px;
            margin-bottom: 6px;
            font-size: 0.6rem;
        }

        .investigation-item:last-child {
            margin-bottom: 0;
        }

        .inv-status {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.5rem;
            flex-shrink: 0;
        }

        .inv-status.investigating {
            background: rgba(251, 191, 36, 0.2);
            color: #fbbf24;
        }

        .inv-status.banned {
            background: rgba(244, 1, 43, 0.2);
            color: #f4012b;
        }

        .inv-status.cleared {
            background: rgba(16, 185, 129, 0.2);
            color: #10b981;
        }

        .inv-player {
            flex: 1;
            color: rgba(255, 255, 255, 0.7);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .inv-time {
            color: rgba(255, 255, 255, 0.3);
            font-size: 0.5rem;
        }

        .why-compete-content {
            padding: 20px 0;
        }

        .why-compete-label {
            display: inline-block;
            color: #f4012b;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 12px;
        }

        .why-compete-label.green {
            color: #10b981;
        }

        .why-compete-title {
            font-family: 'Apex', sans-serif;
            font-size: 2.25rem;
            font-weight: 600;
            color: #fff;
            margin: 0 0 16px 0;
            line-height: 1.2;
        }

        .why-compete-desc {
            color: rgba(255, 255, 255, 0.5);
            font-size: 1rem;
            line-height: 1.7;
            margin: 0 0 20px 0;
        }

        /* Analytics Buttons Container */
        .analytics-buttons {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            margin-top: 16px;
        }

        .why-compete-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(244, 1, 43, 0.1);
            border: 1px solid rgba(244, 1, 43, 0.2);
            color: #f4012b;
            padding: 12px 18px;
            border-radius: 6px;
            font-size: 0.8rem;
            font-weight: 600;
            height: 44px;
            box-sizing: border-box;
        }

        .info-link-stats {
            height: 44px;
            box-sizing: border-box;
        }

        /* ============================= */
        /* FAQ Section - Minimal Style   */
        /* ============================= */
        .faq-section-minimal {
            padding: 80px 32px;
            background: linear-gradient(180deg, rgba(10, 10, 10, 0.3) 0%, #000 100%);
        }

        .faq-container {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 250px 1fr;
            gap: 60px;
        }

        @media (max-width: 800px) {
            .faq-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }

        .faq-header-side {
            position: sticky;
            top: 120px;
            height: fit-content;
        }

        @media (max-width: 800px) {
            .faq-header-side {
                position: static;
                text-align: center;
            }
        }

        .faq-label {
            display: block;
            color: #f4012b;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 3px;
            margin-bottom: 8px;
        }

        .faq-headline {
            font-family: 'Apex', sans-serif;
            font-size: 3rem;
            font-weight: 600;
            color: #fff;
            margin: 0 0 24px 0;
        }

        .faq-support-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.85rem;
            text-decoration: none;
            transition: color 0.2s;
        }

        .faq-support-link:hover {
            color: #f4012b;
        }

        .faq-list-minimal {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .faq-list-minimal .faq-item {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            overflow: hidden;
        }

        .faq-list-minimal .faq-item:hover {
            border-color: rgba(255, 255, 255, 0.1);
        }

        .faq-list-minimal .faq-item.open {
            border-color: rgba(244, 1, 43, 0.3);
        }

        .faq-list-minimal .faq-question {
            width: 100%;
            padding: 20px 24px;
            background: transparent;
            border: none;
            color: #fff;
            font-size: 0.95rem;
            font-weight: 500;
            text-align: left;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-list-minimal .faq-question i {
            color: rgba(255, 255, 255, 0.3);
            transition: transform 0.3s;
            font-size: 0.8rem;
        }

        .faq-list-minimal .faq-item.open .faq-question i {
            transform: rotate(180deg);
            color: #f4012b;
        }

        .faq-list-minimal .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-list-minimal .faq-item.open .faq-answer {
            max-height: 200px;
        }

        .faq-list-minimal .faq-answer-content {
            padding: 0 24px 20px;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* ==================== */
        /* How It Works Section */
        /* ==================== */
        .how-it-works-section {
            padding: 60px 32px 80px;
            position: relative;
            overflow: hidden;
        }

        /* Background Image */
        .how-it-works-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('/static/images/cce_bg.webp');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            z-index: -2;
        }

        /* Dark overlay for readability */
        .how-it-works-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.75) 50%, rgba(0, 0, 0, 0.9) 100%);
            z-index: -1;
        }

        .how-it-works-section.integrated {
            padding-top: 40px;
        }

        /* Matchmaking Header - Integrated Design */
        .matchmaking-header {
            margin-bottom: 40px;
            padding: 0 20px;
        }

        .matchmaking-header-inner {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            padding: 30px 40px;
            background: rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            position: relative;
            backdrop-filter: blur(10px);
        }

        .matchmaking-header-inner::before {
            content: '';
            position: absolute;
            top: -1px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 2px;
            background: linear-gradient(90deg, transparent, #f4012b, transparent);
        }

        .matchmaking-title-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-bottom: 20px;
        }

        .matchmaking-line {
            flex: 1;
            max-width: 60px;
            height: 1px;
            background: rgba(255, 255, 255, 0.15);
        }

        .matchmaking-line.right {
            background: rgba(255, 255, 255, 0.15);
        }

        .matchmaking-title {
            font-family: 'Apex', sans-serif;
            font-size: 1.4rem;
            color: #fff;
            letter-spacing: 4px;
            text-transform: uppercase;
            margin: 0;
        }

        .matchmaking-title .title-accent {
            color: #f4012b;
        }

        .matchmaking-subtitle {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.92rem;
            line-height: 1.7;
            margin: 0;
            max-width: 580px;
            margin: 0 auto;
        }

        .matchmaking-subtitle .highlight-text {
            color: #fff;
            font-weight: 500;
        }

        .matchmaking-subtitle .highlight-cash {
            display: inline-block;
            margin-top: 6px;
            color: #4ade80;
            font-weight: 600;
        }

        @media (max-width: 768px) {
            .matchmaking-header-inner {
                padding: 24px 20px;
            }

            .matchmaking-title {
                font-size: 1.1rem;
                letter-spacing: 2px;
            }

            .matchmaking-line {
                max-width: 40px;
            }

            .matchmaking-subtitle {
                font-size: 0.85rem;
            }
        }

        .how-it-works-section.integrated .section-header.compact {
            margin-bottom: 40px;
        }

        .how-it-works-section.integrated .section-header.compact .section-title {
            font-size: 1.5rem;
            letter-spacing: 4px;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
        }

        .how-it-works-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(244, 1, 43, 0.3), transparent);
            z-index: 1;
        }

        .how-it-works-section::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(244, 1, 43, 0.3), transparent);
            z-index: 1;
        }

        .steps-container {
            display: flex;
            align-items: stretch;
            justify-content: center;
            flex-wrap: wrap;
            gap: 12px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .step-item {
            background: linear-gradient(180deg, rgba(26, 26, 26, 0.9) 0%, rgba(20, 20, 20, 0.95) 100%);
            border: 1px solid rgba(255, 255, 255, 0.05);
            padding: 48px 20px 24px;
            text-align: center;
            width: 155px;
            position: relative;
            transition: all 0.4s ease;
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            border-radius: 8px;
        }

        .step-item-link {
            text-decoration: none;
            color: inherit;
            display: block;
            cursor: pointer;
        }

        .step-item:hover {
            border-color: rgba(244, 1, 43, 0.4);
            transform: translateY(-6px);
            box-shadow: 0 20px 40px rgba(244, 1, 43, 0.2);
        }

        .step-item.highlight {
            background: linear-gradient(180deg, rgba(244, 1, 43, 0.15) 0%, rgba(244, 1, 43, 0.05) 100%);
            border-color: rgba(244, 1, 43, 0.4);
            box-shadow: 0 0 40px rgba(244, 1, 43, 0.2);
        }

        .step-number {
            position: absolute;
            top: 12px;
            left: 50%;
            transform: translateX(-50%);
            width: 28px;
            height: 28px;
            background: linear-gradient(135deg, #f4012b 0%, #b8011f 100%);
            border-radius: 50%;
            font-family: 'Apex', sans-serif;
            font-size: 0.85rem;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 15px rgba(244, 1, 43, 0.5);
            z-index: 2;
        }

        .step-icon {
            width: 50px;
            height: 50px;
            margin: 8px auto 16px;
            background: linear-gradient(135deg, rgba(244, 1, 43, 0.2) 0%, rgba(244, 1, 43, 0.05) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
        }

        .step-icon i {
            font-size: 1.25rem;
            color: #f4012b;
        }

        .step-title {
            font-family: 'Apex', sans-serif;
            font-size: 0.75rem;
            color: #fff;
            margin-bottom: 8px;
            letter-spacing: 1px;
        }

        .step-desc {
            font-size: 0.7rem;
            color: rgba(255, 255, 255, 0.5);
            line-height: 1.5;
        }

        .step-arrow {
            display: flex;
            align-items: center;
            color: rgba(244, 1, 43, 0.5);
            font-size: 1.5rem;
        }

        .cycle-indicator {
            text-align: center;
            margin-top: 50px;
            position: relative;
        }

        .cycle-line {
            display: none;
        }

        .cycle-text {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: #ffffff;
            padding: 12px 24px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
        }

        .cycle-text-link {
            text-decoration: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .cycle-text-link:hover {
            background: linear-gradient(135deg, rgba(244, 1, 43, 0.2) 0%, rgba(244, 1, 43, 0.1) 100%);
            border-color: rgba(244, 1, 43, 0.5);
            box-shadow: 0 0 20px rgba(244, 1, 43, 0.3);
        }

        .cycle-text i {
            animation: spin 3s linear infinite;
        }

        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @media (max-width: 1100px) {
            .steps-container {
                gap: 20px;
            }
            .step-arrow {
                display: none;
            }
            .step-item {
                width: calc(33% - 20px);
                min-width: 140px;
            }
        }

        @media (max-width: 600px) {
            .step-item {
                width: calc(50% - 10px);
            }
        }

        /* ==================== */
        /* Queue Tutorial Simulation */
        /* ==================== */
        .queue-tutorial-container {
            max-width: 900px;
            margin: 0 auto;
            background: linear-gradient(180deg, rgba(13, 13, 13, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 30px;
            position: relative;
            overflow: hidden;
        }

        .queue-tutorial-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #f4012b, #ff4466, #f4012b);
            background-size: 200% 100%;
            animation: gradient-flow 3s linear infinite;
        }

        @keyframes gradient-flow {
            0% { background-position: 0% 50%; }
            100% { background-position: 200% 50%; }
        }

        .tutorial-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(244, 1, 43, 0.15);
            border: 1px solid rgba(244, 1, 43, 0.4);
            padding: 8px 14px;
            border-radius: 20px;
            z-index: 10;
        }

        .tutorial-badge i {
            color: #f4012b;
            font-size: 0.85rem;
        }

        .tutorial-badge span {
            font-family: 'Apex', sans-serif;
            font-size: 0.7rem;
            color: #f4012b;
            letter-spacing: 1px;
        }

        /* Phase Indicator */
        .tutorial-phases {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0;
            margin-bottom: 30px;
            padding: 0 20px;
        }

        .phase-dot {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            opacity: 0.4;
            transition: all 0.3s ease;
        }

        .phase-dot.active {
            opacity: 1;
        }

        .phase-dot.completed {
            opacity: 0.8;
        }

        .phase-num {
            width: 32px;
            height: 32px;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Apex', sans-serif;
            font-size: 0.85rem;
            color: #888;
            transition: all 0.3s ease;
        }

        .phase-dot.active .phase-num {
            background: linear-gradient(135deg, #f4012b 0%, #b8011f 100%);
            border-color: #f4012b;
            color: #fff;
            box-shadow: 0 0 20px rgba(244, 1, 43, 0.5);
        }

        .phase-dot.completed .phase-num {
            background: rgba(16, 185, 129, 0.2);
            border-color: #10b981;
            color: #10b981;
        }

        .phase-label {
            font-size: 0.65rem;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .phase-dot.active .phase-label {
            color: #f4012b;
        }

        .phase-line {
            flex: 1;
            height: 2px;
            background: rgba(255, 255, 255, 0.1);
            margin: 0 10px;
            margin-bottom: 22px;
            max-width: 60px;
        }

        /* Tutorial Content */
        .tutorial-content {
            min-height: 420px;
            position: relative;
        }

        .tutorial-phase {
            display: none;
            flex-direction: column;
            align-items: center;
            animation: fadeIn 0.4s ease;
        }

        .tutorial-phase.active {
            display: flex;
        }

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

        /* Team Formation */
        .tutorial-team-formation {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin-bottom: 25px;
        }

        .tutorial-teammate-slot {
            width: 140px;
            height: 180px;
            background: rgba(255, 255, 255, 0.03);
            border: 2px dashed rgba(255, 255, 255, 0.15);
            border-radius: 16px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

        .tutorial-teammate-slot.searching-pulse {
            animation: slot-pulse 1.5s ease-in-out infinite;
        }

        @keyframes slot-pulse {
            0%, 100% { border-color: rgba(255, 255, 255, 0.15); }
            50% { border-color: rgba(16, 185, 129, 0.5); }
        }

        .tutorial-slot-avatar {
            width: 55px;
            height: 55px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .tutorial-slot-avatar i {
            font-size: 1.4rem;
            color: rgba(255, 255, 255, 0.3);
        }

        .tutorial-slot-label {
            font-size: 0.7rem;
            color: rgba(255, 255, 255, 0.4);
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        /* Player Card */
        .tutorial-player-card {
            width: 200px;
            height: 250px;
            background: linear-gradient(180deg, rgba(244, 1, 43, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);
            border: 2px solid #f4012b;
            border-radius: 20px;
            position: relative;
            overflow: hidden;
        }

        .tutorial-player-card.searching {
            border-color: #10b981;
            background: linear-gradient(180deg, rgba(16, 185, 129, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);
        }

        .tutorial-card-glow {
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(244, 1, 43, 0.1) 0%, transparent 50%);
            animation: rotate-glow 10s linear infinite;
        }

        .tutorial-player-card.searching .tutorial-card-glow {
            background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
        }

        @keyframes rotate-glow {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .tutorial-card-content {
            position: relative;
            z-index: 1;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 15px;
        }

        .tutorial-player-avatar {
            position: relative;
            margin-bottom: 10px;
        }

        .tutorial-avatar-placeholder {
            width: 55px;
            height: 55px;
            background: #f4012b;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Apex', sans-serif;
            font-size: 1.5rem;
            color: #fff;
        }

        .tutorial-avatar-ring {
            position: absolute;
            top: -4px;
            left: -4px;
            right: -4px;
            bottom: -4px;
            border: 2px solid #f4012b;
            border-radius: 50%;
            animation: pulse-ring 2s infinite;
        }

        .tutorial-avatar-ring.searching {
            border-color: #10b981;
        }

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

        .tutorial-player-name {
            font-family: 'Apex', sans-serif;
            font-size: 0.95rem;
            color: #fff;
            letter-spacing: 1px;
            margin-bottom: 4px;
        }

        .tutorial-apex-name {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 10px;
        }

        .tutorial-player-tags {
            display: flex;
            gap: 6px;
            margin-bottom: 10px;
        }

        .tutorial-tag {
            display: flex;
            align-items: center;
            gap: 3px;
            padding: 4px 8px;
            border-radius: 6px;
            font-size: 0.65rem;
        }

        .tutorial-tag.tag-rank {
            background: rgba(244, 1, 43, 0.2);
            border: 1px solid rgba(244, 1, 43, 0.4);
        }

        .tutorial-tag.tag-rank .tag-value {
            color: #f4012b;
        }

        .tutorial-tag.tag-level {
            background: rgba(255, 215, 0, 0.2);
            border: 1px solid rgba(255, 215, 0, 0.4);
        }

        .tutorial-tag.tag-level .tag-value {
            color: #ffd700;
        }

        .tutorial-tag .tag-label {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.5rem;
        }

        .tutorial-tag .tag-value {
            font-weight: 700;
        }

        .tutorial-division-badge {
            font-size: 0.6rem;
            padding: 5px 12px;
            border-radius: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 600;
        }

        .tutorial-division-badge.open {
            background: rgba(16, 185, 129, 0.2);
            color: #10b981;
            border: 1px solid rgba(16, 185, 129, 0.3);
        }

        /* Queue Button */
        .tutorial-queue-btn {
            width: 220px;
            height: 100px;
            padding: 15px 25px;
            border: none;
            border-radius: 16px;
            cursor: pointer;
            font-family: 'Apex', sans-serif;
            text-transform: uppercase;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .tutorial-queue-btn.ready {
            background: linear-gradient(135deg, #f4012b 0%, #d00124 50%, #a00020 100%);
            color: #fff;
            box-shadow: 0 8px 32px rgba(244, 1, 43, 0.4);
        }

        .tutorial-queue-btn.ready:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 12px 40px rgba(244, 1, 43, 0.5);
        }

        .tutorial-queue-btn.searching {
            background: linear-gradient(135deg, #064e3b 0%, #065f46 50%, #047857 100%);
            color: #fff;
            box-shadow: 0 8px 32px rgba(16, 185, 129, 0.3);
            cursor: default;
        }

        .tutorial-btn-content {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .tutorial-btn-content i {
            font-size: 1.2rem;
        }

        .tutorial-btn-text {
            font-size: 1rem;
            letter-spacing: 2px;
            font-weight: 700;
        }

        .tutorial-btn-subtext {
            display: block;
            font-family: 'URW Dock', sans-serif;
            font-size: 0.7rem;
            color: rgba(255, 255, 255, 0.7);
            text-transform: none;
            letter-spacing: 0.5px;
            margin-top: 6px;
        }

        .tutorial-search-animation {
            display: flex;
            gap: 4px;
        }

        .tutorial-search-animation span {
            width: 8px;
            height: 8px;
            background: linear-gradient(135deg, #10b981, #34d399);
            border-radius: 50%;
            animation: bounce 1.4s infinite ease-in-out both;
            box-shadow: 0 0 8px rgba(16, 185, 129, 0.5);
        }

        .tutorial-search-animation span:nth-child(1) { animation-delay: -0.32s; }
        .tutorial-search-animation span:nth-child(2) { animation-delay: -0.16s; }

        @keyframes bounce {
            0%, 80%, 100% { transform: scale(0.6); opacity: 0.5; }
            40% { transform: scale(1); opacity: 1; }
        }

        .tutorial-search-timer {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-top: 8px;
            padding: 4px 12px;
            background: rgba(16, 185, 129, 0.15);
            border: 1px solid rgba(16, 185, 129, 0.3);
            border-radius: 20px;
            font-size: 0.8rem;
            color: #fff;
        }

        .tutorial-search-timer i {
            color: #34d399;
            animation: tick 1s ease-in-out infinite;
        }

        @keyframes tick {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        /* Stats Panel */
        .tutorial-stats-panel {
            display: flex;
            align-items: center;
            gap: 20px;
            background: rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 12px 20px;
        }

        .tutorial-stat-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .tutorial-stat-icon {
            width: 32px;
            height: 32px;
            background: rgba(244, 1, 43, 0.15);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .tutorial-stat-icon i {
            color: #f4012b;
            font-size: 0.85rem;
        }

        .tutorial-stat-icon.pulse {
            animation: icon-pulse 1.5s ease-in-out infinite;
        }

        @keyframes icon-pulse {
            0%, 100% { box-shadow: 0 0 0 0 rgba(244, 1, 43, 0.4); }
            50% { box-shadow: 0 0 0 8px rgba(244, 1, 43, 0); }
        }

        .tutorial-stat-info {
            display: flex;
            flex-direction: column;
        }

        .tutorial-stat-value {
            font-family: 'Apex', sans-serif;
            font-size: 1.3rem;
            color: #fff;
        }

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

        .tutorial-stat-divider {
            width: 1px;
            height: 35px;
            background: rgba(255, 255, 255, 0.1);
        }

        /* Phase 3: Match Found */
        .tutorial-match-found {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .tutorial-timer-circle {
            position: relative;
            width: 120px;
            height: 120px;
            margin-bottom: 20px;
        }

        .tutorial-timer-ring {
            width: 100%;
            height: 100%;
            transform: rotate(-90deg);
        }

        .tutorial-timer-ring-bg {
            fill: none;
            stroke: rgba(255, 255, 255, 0.1);
            stroke-width: 6;
        }

        .tutorial-timer-ring-progress {
            fill: none;
            stroke: #f4012b;
            stroke-width: 6;
            stroke-linecap: round;
            stroke-dasharray: 282.6;
            stroke-dashoffset: 0;
            transition: stroke-dashoffset 1s linear, stroke 0.3s ease;
        }

        .tutorial-timer-value {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-family: 'Apex', sans-serif;
            font-size: 2.5rem;
            color: #fff;
        }

        .tutorial-match-title {
            font-family: 'Apex', sans-serif;
            font-size: 2rem;
            color: #f4012b;
            margin-bottom: 8px;
            letter-spacing: 3px;
            animation: title-pulse 1s infinite;
        }

        .tutorial-match-title.accepted {
            color: #10b981;
            animation: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        @keyframes title-pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        .tutorial-match-subtitle {
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 20px;
            font-size: 1rem;
        }

        .tutorial-match-subtitle.waiting {
            color: rgba(16, 185, 129, 0.8);
        }

        .tutorial-accept-progress {
            width: 100%;
            max-width: 350px;
            margin-bottom: 25px;
        }

        .tutorial-accept-bar {
            height: 8px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            overflow: hidden;
            margin-bottom: 10px;
        }

        .tutorial-accept-fill {
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, #10b981 0%, #34d399 100%);
            border-radius: 4px;
            transition: width 0.3s ease;
        }

        .tutorial-accept-text {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            font-size: 1.1rem;
        }

        .tutorial-accepted-count {
            font-family: 'Apex', sans-serif;
            font-size: 1.4rem;
            color: #10b981;
            font-weight: 700;
        }

        .tutorial-progress-sep {
            color: rgba(255, 255, 255, 0.4);
        }

        .tutorial-total-count {
            font-family: 'Apex', sans-serif;
            font-size: 1.4rem;
            color: #fff;
        }

        .tutorial-progress-label {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.85rem;
            margin-left: 8px;
        }

        .tutorial-accept-actions {
            display: flex;
            gap: 15px;
        }

        .tutorial-action-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 30px;
            border: none;
            border-radius: 10px;
            font-family: 'Apex', sans-serif;
            font-size: 0.95rem;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .tutorial-action-btn.accept {
            background: linear-gradient(135deg, #f4012b 0%, #d00124 100%);
            color: #fff;
            min-width: 150px;
        }

        .tutorial-action-btn.accept:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(244, 1, 43, 0.4);
        }

        .tutorial-action-btn.decline {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: rgba(255, 255, 255, 0.6);
        }

        .tutorial-action-btn.decline:hover {
            background: rgba(255, 255, 255, 0.15);
            color: #fff;
        }

        .tutorial-accepted-hint {
            color: rgba(16, 185, 129, 0.8);
            font-size: 0.9rem;
            margin-top: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .tutorial-accepted-hint i {
            color: #10b981;
        }

        /* Phase 4: Match Dashboard */
        .tutorial-match-dashboard {
            width: 100%;
            max-width: 700px;
            background: rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            overflow: hidden;
        }

        .tutorial-match-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 20px;
            background: rgba(16, 185, 129, 0.1);
            border-bottom: 1px solid rgba(16, 185, 129, 0.2);
        }

        .tutorial-match-info,
        .tutorial-game-info {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .tutorial-match-label,
        .tutorial-game-label {
            font-size: 0.6rem;
            color: rgba(255, 255, 255, 0.5);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .tutorial-match-number,
        .tutorial-game-number {
            font-family: 'Apex', sans-serif;
            font-size: 1rem;
            color: #fff;
        }

        .tutorial-match-status {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: rgba(16, 185, 129, 0.2);
            border: 1px solid rgba(16, 185, 129, 0.4);
            border-radius: 20px;
            font-family: 'Apex', sans-serif;
            font-size: 0.75rem;
            color: #10b981;
            letter-spacing: 1px;
        }

        .tutorial-status-dot {
            width: 8px;
            height: 8px;
            background: #10b981;
            border-radius: 50%;
            animation: status-pulse 1.5s infinite;
        }

        @keyframes status-pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.2); }
        }

        .tutorial-your-team {
            padding: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .tutorial-team-title {
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: 'Apex', sans-serif;
            font-size: 0.8rem;
            color: #10b981;
            margin-bottom: 15px;
            letter-spacing: 1px;
        }

        .tutorial-team-members {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .tutorial-team-member {
            display: flex;
            align-items: center;
            gap: 12px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 12px 15px;
            flex: 1;
            min-width: 180px;
            position: relative;
        }

        .tutorial-team-member.you {
            border-color: rgba(16, 185, 129, 0.4);
            background: rgba(16, 185, 129, 0.05);
        }

        .tutorial-member-avatar {
            width: 40px;
            height: 40px;
            background: #f4012b;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Apex', sans-serif;
            font-size: 1rem;
            color: #fff;
        }

        .tutorial-member-avatar.teammate1 {
            background: #8b5cf6;
        }

        .tutorial-member-avatar.teammate2 {
            background: #3b82f6;
        }

        .tutorial-member-info {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .tutorial-member-name {
            font-family: 'Apex', sans-serif;
            font-size: 0.85rem;
            color: #fff;
            letter-spacing: 0.5px;
        }

        .tutorial-member-apex {
            font-size: 0.7rem;
            color: rgba(255, 255, 255, 0.5);
        }

        .tutorial-you-badge {
            position: absolute;
            top: 8px;
            right: 8px;
            background: #10b981;
            color: #fff;
            font-size: 0.55rem;
            padding: 3px 8px;
            border-radius: 4px;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        .tutorial-lobby-section {
            display: flex;
            gap: 15px;
            padding: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .tutorial-lobby-code-box {
            flex: 1;
            background: linear-gradient(135deg, #064e3b 0%, #065f46 50%, #047857 100%);
            border-radius: 12px;
            padding: 15px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 25px rgba(16, 185, 129, 0.3);
        }

        .tutorial-lobby-label,
        .tutorial-map-label {
            font-family: 'Apex', sans-serif;
            font-size: 0.6rem;
            color: rgba(255, 255, 255, 0.6);
            letter-spacing: 1px;
            margin-bottom: 6px;
        }

        .tutorial-lobby-code {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .tutorial-code {
            font-family: 'Apex', sans-serif;
            font-size: 1.4rem;
            letter-spacing: 3px;
            color: #fff;
        }

        .tutorial-copy-btn {
            background: rgba(255, 255, 255, 0.15);
            border: none;
            color: #fff;
            width: 32px;
            height: 32px;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.2s;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .tutorial-copy-btn:hover {
            background: rgba(255, 255, 255, 0.25);
        }

        .tutorial-map-box {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 15px 25px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .tutorial-map-name {
            font-family: 'Apex', sans-serif;
            font-size: 0.9rem;
            color: #fff;
            letter-spacing: 1px;
        }

        .tutorial-teams-grid-section {
            padding: 15px 20px;
        }

        .tutorial-teams-title {
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: 'Apex', sans-serif;
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 12px;
            letter-spacing: 1px;
        }

        .tutorial-teams-grid {
            display: grid;
            grid-template-columns: repeat(10, 1fr);
            gap: 6px;
        }

        .tutorial-team-cell {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 8px 4px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 6px;
            font-family: 'Apex', sans-serif;
            font-size: 0.7rem;
            color: rgba(255, 255, 255, 0.5);
            transition: all 0.2s ease;
        }

        .tutorial-team-cell.you {
            background: rgba(16, 185, 129, 0.15);
            border-color: rgba(16, 185, 129, 0.4);
            color: #10b981;
            font-weight: 700;
        }

        /* Tutorial Controls */
        .tutorial-controls {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 25px;
        }

        .tutorial-control-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            border-radius: 8px;
            font-family: 'Apex', sans-serif;
            font-size: 0.8rem;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.2s ease;
            text-decoration: none;
            border: none;
        }

        .tutorial-control-btn.restart {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #fff;
        }

        .tutorial-control-btn.restart:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .tutorial-control-btn.cta {
            background: linear-gradient(135deg, #f4012b 0%, #d00124 100%);
            color: #fff;
        }

        .tutorial-control-btn.cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(244, 1, 43, 0.4);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .queue-tutorial-container {
                padding: 20px 15px;
                border-radius: 16px;
            }

            .tutorial-badge {
                top: 12px;
                right: 12px;
                padding: 6px 10px;
            }

            .tutorial-badge span {
                font-size: 0.6rem;
            }

            .tutorial-phases {
                gap: 0;
                margin-bottom: 20px;
            }

            .phase-num {
                width: 28px;
                height: 28px;
                font-size: 0.75rem;
            }

            .phase-label {
                font-size: 0.55rem;
            }

            .phase-line {
                max-width: 30px;
                margin: 0 5px;
            }

            .tutorial-team-formation {
                flex-direction: column;
                gap: 15px;
            }

            .tutorial-teammate-slot {
                width: 100%;
                max-width: 200px;
                height: auto;
                padding: 15px;
                flex-direction: row;
                justify-content: flex-start;
            }

            .tutorial-slot-avatar {
                width: 40px;
                height: 40px;
            }

            .tutorial-player-card {
                width: 100%;
                max-width: 220px;
                height: auto;
                min-height: 200px;
            }

            .tutorial-queue-btn {
                width: 100%;
                max-width: 250px;
            }

            .tutorial-stats-panel {
                width: 100%;
                justify-content: center;
            }

            .tutorial-timer-circle {
                width: 100px;
                height: 100px;
            }

            .tutorial-timer-value {
                font-size: 2rem;
            }

            .tutorial-match-title {
                font-size: 1.5rem;
            }

            .tutorial-accept-actions {
                flex-direction: column;
                width: 100%;
                max-width: 250px;
            }

            .tutorial-action-btn {
                width: 100%;
            }

            .tutorial-match-header {
                flex-wrap: wrap;
                gap: 10px;
            }

            .tutorial-team-members {
                flex-direction: column;
            }

            .tutorial-team-member {
                min-width: auto;
            }

            .tutorial-lobby-section {
                flex-direction: column;
            }

            .tutorial-teams-grid {
                grid-template-columns: repeat(5, 1fr);
            }

            .tutorial-controls {
                flex-direction: column;
                align-items: center;
            }

            .tutorial-control-btn {
                width: 100%;
                max-width: 250px;
                justify-content: center;
            }
        }


        /* ==================== */
        /* Footer               */
        /* ==================== */
        .site-footer {
            background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
            border-top: 1px solid #222;
            padding: 3rem 2rem 1.5rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }

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

        @media (max-width: 600px) {
            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
        }

        .footer-section {
            display: flex;
            flex-direction: column;
        }

        .footer-brand {
            padding-right: 2rem;
            justify-content: center;
            align-items: center;
        }

        @media (max-width: 600px) {
            .footer-brand {
                padding-right: 0;
                align-items: center;
            }
        }

        .footer-logo {
            height: auto;
            width: 160px;
            max-width: 160px;
            object-fit: contain;
            margin: 0;
            display: block;
        }

        .footer-tagline {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.5;
            margin-bottom: 1.25rem;
        }

        .footer-socials {
            display: flex;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        @media (max-width: 600px) {
            .footer-socials {
                justify-content: center;
            }
        }

        .footer-socials a {
            width: 34px;
            height: 34px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid #333;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #888;
            font-size: 0.9rem;
            transition: all 0.2s;
            flex-shrink: 0;
        }

        .footer-socials a:hover {
            background: rgba(244, 1, 43, 0.15);
            border-color: #f4012b;
            color: #f4012b;
            transform: translateY(-2px);
        }

        .footer-title {
            font-family: 'Apex', 'Apex-Black', sans-serif;
            font-size: 0.85rem;
            color: #fff;
            letter-spacing: 1.5px;
            margin-bottom: 1rem;
        }

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

        .footer-links li {
            margin-bottom: 0.65rem;
        }

        .footer-links a {
            color: #666;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-links a i {
            font-size: 0.8rem;
            width: 16px;
            text-align: center;
        }

        .footer-links a:hover {
            color: #f4012b;
        }

        .footer-bottom {
            border-top: 1px solid #222;
            padding-top: 1.5rem;
            text-align: center;
        }

        .footer-copyright {
            color: #555;
            font-size: 0.8rem;
            margin: 0 0 0.35rem 0;
        }

        .footer-disclaimer {
            color: #444;
            font-size: 0.7rem;
            margin: 0;
        }

        /* ==================== */
        /* Responsive           */
        /* ==================== */
        @media (max-width: 768px) {
            .hero-logo {
                height: 180px;
            }

            .hero-subtitle {
                font-size: 1rem;
                letter-spacing: 3px;
            }

            .stats-section {
                gap: 30px;
            }

            .stat-value {
                font-size: 2rem;
            }

            .header-right {
                gap: 8px;
            }

            .auth-button {
                padding: 8px 14px;
                font-size: 13px;
            }

            .auth-button span {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .hero-section {
                padding: 80px 20px 30px;
            }

            .hero-logo {
                height: 135px;
            }

            .hero-badge {
                font-size: 9px;
                padding: 8px 14px;
            }

            .hero-subtitle {
                font-size: 0.85rem;
                letter-spacing: 2px;
            }
        }


