:root {
            --primary-color: #1a1a2e;
            --secondary-color: #16213e;
            --accent-color: #0fccce;
            --light-accent: #e6f7f7;
            --text-light: #f8f9fa;
            --text-dark: #333;
            --gradient-primary: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            --gradient-accent: linear-gradient(90deg, #0fccce 0%, #00b4d8 100%);
            --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
            --border-radius: 12px;
            --transition: all 0.3s ease;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5 {
            font-weight: 700;
            color: var(--primary-color);
        }
        .bg-gradient-dark {
            background: var(--gradient-primary);
            color: var(--text-light);
        }
        .bg-gradient-dark h1, .bg-gradient-dark h2, .bg-gradient-dark h3, 
        .bg-gradient-dark h4, .bg-gradient-dark h5, .bg-gradient-dark .text-light {
            color: var(--text-light);
        }
        .text-accent {
            color: var(--accent-color);
        }
        .btn-primary {
            background: var(--gradient-accent);
            border: none;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }
        .btn-outline-light {
            border: 2px solid rgba(255, 255, 255, 0.2);
            padding: 10px 26px;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
        }
        .btn-outline-light:hover {
            background-color: rgba(255, 255, 255, 0.1);
            border-color: white;
            transform: translateY(-3px);
        }
        .section-padding {
            padding: 80px 0;
        }
        .section-title {
            position: relative;
            padding-bottom: 20px;
            margin-bottom: 40px;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--gradient-accent);
            border-radius: 2px;
        }
        .section-title.text-center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .card-hover {
            transition: var(--transition);
            border: none;
            border-radius: var(--border-radius);
            overflow: hidden;
            height: 100%;
        }
        .card-hover:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        .feature-icon {
            width: 70px;
            height: 70px;
            background: var(--light-accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 30px;
            color: var(--accent-color);
        }
        .navbar {
            padding: 20px 0;
            background-color: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(10px);
            transition: var(--transition);
        }
        .navbar.scrolled {
            padding: 10px 0;
            box-shadow: var(--shadow-md);
        }
        .navbar-brand {
            font-size: 28px;
            font-weight: 800;
            color: white;
        }
        .navbar-brand span {
            color: var(--accent-color);
        }
        .nav-link {
            color: rgba(255, 255, 255, 0.85);
            font-weight: 500;
            margin: 0 10px;
            transition: var(--transition);
        }
        .nav-link:hover, .nav-link.active {
            color: var(--accent-color);
        }
        .hero-section {
            padding: 150px 0 100px;
            background: var(--gradient-primary) url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center center/cover;
            background-blend-mode: overlay;
            position: relative;
            overflow: hidden;
        }
        .hero-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
        }
        .hero-content {
            position: relative;
            z-index: 2;
        }
        .game-card {
            position: relative;
            border-radius: var(--border-radius);
            overflow: hidden;
            height: 300px;
            margin-bottom: 30px;
        }
        .game-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .game-card:hover img {
            transform: scale(1.05);
        }
        .game-card-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 25px;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
            color: white;
        }
        .stats-box {
            text-align: center;
            padding: 30px 20px;
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-md);
            transition: var(--transition);
        }
        .stats-box:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        .stats-box .number {
            font-size: 48px;
            font-weight: 800;
            color: var(--accent-color);
            line-height: 1;
            margin-bottom: 10px;
        }
        footer {
            background-color: #0c0c1a;
            color: #aaa;
            padding: 70px 0 0;
        }
        footer h5 {
            color: white;
            margin-bottom: 25px;
            font-size: 18px;
        }
        footer a {
            color: #aaa;
            text-decoration: none;
            transition: var(--transition);
        }
        footer a:hover {
            color: var(--accent-color);
        }
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            margin-right: 10px;
            transition: var(--transition);
        }
        .social-links a:hover {
            background: var(--accent-color);
            color: white;
            transform: translateY(-3px);
        }
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 20px 0;
            margin-top: 50px;
            font-size: 14px;
        }
        friendlink {
            display: block;
            margin-bottom: 30px;
        }
        .flink {
            display: inline-block;
            background: rgba(255, 255, 255, 0.05);
            padding: 10px 20px;
            border-radius: 8px;
            margin: 0 10px 10px 0;
            color: #aaa;
            text-decoration: none;
            transition: var(--transition);
        }
        .flink:hover {
            background: rgba(15, 204, 206, 0.2);
            color: var(--accent-color);
            transform: translateY(-3px);
        }
        .fade-in {
            animation: fadeIn 1s ease forwards;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @media (max-width: 992px) {
            .section-padding {
                padding: 60px 0;
            }
            .hero-section {
                padding: 120px 0 80px;
            }
            .navbar-nav {
                background: rgba(26, 26, 46, 0.98);
                padding: 20px;
                border-radius: 10px;
                margin-top: 10px;
            }
        }
        @media (max-width: 768px) {
            .section-padding {
                padding: 50px 0;
            }
            .hero-section {
                padding: 100px 0 60px;
            }
            .stats-box .number {
                font-size: 36px;
            }
        }
        .process-step {
            position: relative;
            padding-left: 30px;
            margin-bottom: 30px;
        }
        .process-step:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 3px;
            height: 100%;
            background: var(--accent-color);
        }
        .step-number {
            position: absolute;
            left: -15px;
            top: 0;
            width: 30px;
            height: 30px;
            background: var(--accent-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }
