:root {
            --primary: #1a237e;
            --secondary: #ff6f00;
            --dark: #121212;
            --light: #f5f5f5;
            --gray: #424242;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
        }
        .nav-link {
            font-weight: 500;
            transition: all 0.3s;
        }
        .nav-link:hover {
            color: var(--secondary) !important;
        }
        .hero-section {
            background: linear-gradient(rgba(18, 18, 18, 0.85), rgba(26, 35, 126, 0.9)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0;
            position: relative;
        }
        .hero-section h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
        }
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
            text-align: center;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--secondary);
        }
        .game-card {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            transition: all 0.4s ease;
            height: 100%;
            background: white;
        }
        .game-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }
        .game-card img {
            height: 220px;
            object-fit: cover;
            width: 100%;
        }
        .flink {
            display: inline-block;
            padding: 10px 20px;
            margin: 8px;
            background: #f8f9fa;
            border-radius: 8px;
            text-decoration: none;
            color: var(--primary);
            font-weight: 500;
            transition: all 0.3s;
            border: 1px solid #dee2e6;
        }
        .flink:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }
        .footer {
            background: var(--dark);
            color: #ddd;
            padding-top: 60px;
        }
        .footer a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: var(--secondary);
        }
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s;
        }
        .social-icons a:hover {
            background: var(--secondary);
            transform: scale(1.1);
        }
        .btn-primary-custom {
            background: var(--primary);
            border: none;
            padding: 12px 28px;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s;
        }
        .btn-primary-custom:hover {
            background: #0d1a6b;
            transform: translateY(-3px);
        }
        .btn-secondary-custom {
            background: var(--secondary);
            border: none;
            padding: 12px 28px;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s;
            color: white;
        }
        .btn-secondary-custom:hover {
            background: #e65100;
            transform: translateY(-3px);
            color: white;
        }
        .stats-box {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            text-align: center;
            transition: all 0.3s;
            height: 100%;
        }
        .stats-box:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        .stats-box i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
        }
        .process-step {
            position: relative;
            padding-left: 70px;
            margin-bottom: 40px;
        }
        .process-step .step-number {
            position: absolute;
            left: 0;
            top: 0;
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 1.5rem;
        }
        .timeline {
            position: relative;
            padding: 20px 0;
        }
        .timeline:before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--primary);
            transform: translateX(-50%);
        }
        @media (max-width: 768px) {
            .timeline:before {
                left: 30px;
            }
        }
        .feature-icon {
            width: 70px;
            height: 70px;
            background: rgba(26, 35, 126, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        .feature-icon i {
            font-size: 1.8rem;
            color: var(--primary);
        }
        .news-card {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s;
            height: 100%;
            background: white;
        }
        .news-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
        }
        .news-card img {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }
        .contact-form .form-control {
            padding: 15px;
            border-radius: 8px;
            border: 1px solid #ddd;
            margin-bottom: 20px;
        }
        .contact-form .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 0.25rem rgba(26, 35, 126, 0.25);
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            z-index: 1000;
            opacity: 0;
            transition: all 0.3s;
        }
        .back-to-top.visible {
            opacity: 1;
        }
        .back-to-top:hover {
            background: var(--secondary);
            transform: scale(1.1);
        }
