:root {
            --primary: #6a11cb;
            --secondary: #2575fc;
            --accent: #ff5e62;
            --dark: #121826;
            --light: #f8f9fa;
            --gray: #6c757d;
            --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
        }
        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
            overflow-x: hidden;
            line-height: 1.6;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
        }
        .navbar-brand {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            font-size: 1.8rem;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .hero {
            background: linear-gradient(rgba(18, 24, 38, 0.85), rgba(18, 24, 38, 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 100px;
            position: relative;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(to right, #fff 0%, #6a11cb 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .btn-primary {
            background: var(--gradient);
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(106, 17, 203, 0.3);
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 50px;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 70px;
            height: 4px;
            background: var(--gradient);
            border-radius: 2px;
        }
        .section-title.text-center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .icon-box {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: var(--gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            color: white;
            font-size: 2rem;
            transition: all 0.3s ease;
        }
        .feature-card:hover .icon-box {
            transform: scale(1.1) rotate(5deg);
        }
        .game-card {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
        }
        .game-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        .game-card img {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }
        .stats-counter {
            background: var(--gradient);
            padding: 80px 0;
            color: white;
        }
        .stat-number {
            font-size: 3.5rem;
            font-weight: 700;
            font-family: 'Orbitron', sans-serif;
        }
        .team-member {
            text-align: center;
            margin-bottom: 30px;
        }
        .team-img {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 20px;
            border: 5px solid #f1f1f1;
            transition: all 0.3s ease;
        }
        .team-member:hover .team-img {
            border-color: var(--primary);
        }
        .contact-info-box {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 30px;
            height: 100%;
            transition: all 0.3s ease;
        }
        .contact-info-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .contact-icon {
            font-size: 2.5rem;
            background: var(--gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 20px;
        }
        footer {
            background: var(--dark);
            color: #ccc;
            padding-top: 80px;
        }
        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s;
            display: block;
            margin-bottom: 8px;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            color: white;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        .social-icons a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding: 20px 0;
            margin-top: 50px;
        }
        .flink {
            display: inline-block;
            background: #f8f9fa;
            padding: 8px 20px;
            border-radius: 50px;
            margin: 5px 10px 5px 0;
            color: #333;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid #dee2e6;
        }
        .flink:hover {
            background: var(--gradient);
            color: white;
            transform: translateY(-2px);
            border-color: transparent;
        }
        .friendlink {
            background: #f8f9fa;
            padding: 60px 0;
        }
        .nav-link {
            font-weight: 500;
            transition: color 0.3s;
        }
        .nav-link:hover {
            color: var(--primary) !important;
        }
        .navbar-nav .nav-link.active {
            color: var(--primary) !important;
        }
        .mobile-img {
            max-height: 400px;
            object-fit: contain;
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero {
                padding: 100px 0 60px;
            }
            .stat-number {
                font-size: 2.5rem;
            }
        }
        .blog-card {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            height: 100%;
        }
        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .blog-img {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }
        .form-control {
            padding: 12px 15px;
            border-radius: 10px;
            border: 1px solid #dee2e6;
        }
        .form-control:focus {
            box-shadow: 0 0 0 0.25rem rgba(106, 17, 203, 0.25);
            border-color: var(--primary);
        }
