:root {
            --primary-dark: #0a0e17;
            --primary-blue: #1a5fff;
            --accent-purple: #8a2be2;
            --accent-cyan: #00d4ff;
            --light-bg: #f8f9fa;
            --text-light: #e9ecef;
            --text-gray: #adb5bd;
        }
        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--primary-dark);
            color: var(--text-light);
            overflow-x: hidden;
            line-height: 1.7;
        }
        h1, h2, h3, h4, h5, .logo-font {
            font-family: 'Oxanium', cursive;
            font-weight: 700;
        }
        .section-padding {
            padding-top: 6rem;
            padding-bottom: 6rem;
        }
        .hero-gradient {
            background: linear-gradient(135deg, var(--primary-dark) 0%, #1c2331 50%, #0d1b2a 100%);
        }
        .gradient-text {
            background: linear-gradient(90deg, var(--primary-blue), var(--accent-cyan));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: inline-block;
        }
        .nav-scrolled {
            background-color: rgba(10, 14, 23, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }
        .btn-glow {
            background: linear-gradient(90deg, var(--primary-blue), var(--accent-purple));
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            position: relative;
            overflow: hidden;
            z-index: 1;
            transition: all 0.3s ease;
        }
        .btn-glow:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(26, 95, 255, 0.4);
            color: white;
        }
        .btn-glow::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, var(--accent-purple), var(--primary-blue));
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
            border-radius: 50px;
        }
        .btn-glow:hover::after {
            opacity: 1;
        }
        .card-dark {
            background-color: rgba(30, 33, 44, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            height: 100%;
        }
        .card-dark:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 212, 255, 0.15);
            border-color: rgba(0, 212, 255, 0.2);
        }
        .flink {
            display: inline-block;
            padding: 10px 20px;
            margin: 5px 10px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            color: var(--text-gray);
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        .flink:hover {
            background: rgba(26, 95, 255, 0.15);
            color: var(--accent-cyan);
            border-color: rgba(0, 212, 255, 0.3);
            transform: scale(1.05);
        }
        .game-card {
            border-radius: 15px;
            overflow: hidden;
            background-size: cover;
            background-position: center;
            height: 300px;
            position: relative;
            display: flex;
            align-items: flex-end;
        }
        .game-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(10, 14, 23, 0.9) 0%, transparent 50%);
            z-index: 1;
        }
        .game-card-content {
            position: relative;
            z-index: 2;
            padding: 25px;
            width: 100%;
        }
        .stats-number {
            font-size: 3.5rem;
            font-weight: 800;
            font-family: 'Oxanium', cursive;
            background: linear-gradient(90deg, #fff, var(--accent-cyan));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1;
        }
        .footer {
            background-color: #080b12;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }
        .form-control-custom {
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            color: var(--text-light);
            padding: 12px 20px;
        }
        .form-control-custom:focus {
            background-color: rgba(255, 255, 255, 0.08);
            border-color: var(--primary-blue);
            color: var(--text-light);
            box-shadow: 0 0 0 0.25rem rgba(26, 95, 255, 0.25);
        }
        .icon-box {
            width: 70px;
            height: 70px;
            border-radius: 15px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-purple));
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
        }
        @media (max-width: 768px) {
            .section-padding {
                padding-top: 4rem;
                padding-bottom: 4rem;
            }
            .display-4 {
                font-size: 2.5rem;
            }
            .stats-number {
                font-size: 2.5rem;
            }
        }
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
