:root {
            --primary-blue: #1a237e;
            --accent-purple: #7b1fa2;
            --dark-bg: #121212;
            --light-text: #f5f5f7;
            --card-bg: #1e1e1e;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background-color: var(--dark-bg);
            color: var(--light-text);
            line-height: 1.7;
            overflow-x: hidden;
        }
        .hero-section {
            background: linear-gradient(rgba(18, 18, 18, 0.9), rgba(26, 35, 126, 0.8)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
            min-height: 90vh;
            display: flex;
            align-items: center;
        }
        .nav-wrapper {
            background-color: rgba(18, 18, 18, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(123, 31, 162, 0.3);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(90deg, #7b1fa2, #2196f3);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .nav-link {
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s;
            position: relative;
        }
        .nav-link:hover {
            color: #bb86fc !important;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #7b1fa2, #2196f3);
            transition: all 0.3s;
            transform: translateX(-50%);
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .section-title {
            position: relative;
            padding-bottom: 1rem;
            margin-bottom: 3rem;
            font-weight: 700;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #7b1fa2, #2196f3);
            border-radius: 2px;
        }
        .section-title.center::after {
            left: 50%;
            transform: translateX(-50%);
        }
        .feature-card {
            background-color: var(--card-bg);
            border-radius: 16px;
            border: 1px solid rgba(123, 31, 162, 0.2);
            transition: transform 0.4s, box-shadow 0.4s;
            height: 100%;
            overflow: hidden;
        }
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(123, 31, 162, 0.15);
            border-color: rgba(123, 31, 162, 0.5);
        }
        .icon-wrapper {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, #7b1fa2, #1a237e);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
        }
        .game-card {
            border-radius: 16px;
            overflow: hidden;
            background-color: var(--card-bg);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s;
        }
        .game-card:hover {
            transform: scale(1.03);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }
        .game-card img {
            height: 220px;
            object-fit: cover;
            transition: transform 0.5s;
        }
        .game-card:hover img {
            transform: scale(1.05);
        }
        .btn-gradient {
            background: linear-gradient(90deg, #7b1fa2, #1a237e);
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        .btn-gradient:hover {
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(123, 31, 162, 0.3);
        }
        .team-member {
            background-color: var(--card-bg);
            border-radius: 16px;
            padding: 2rem;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s;
        }
        .team-member:hover {
            border-color: rgba(123, 31, 162, 0.5);
        }
        .team-img {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid transparent;
            background: linear-gradient(45deg, #7b1fa2, #1a237e) border-box;
            margin-bottom: 1.5rem;
        }
        .contact-info-box {
            background-color: var(--card-bg);
            border-radius: 16px;
            padding: 2.5rem;
            border-left: 5px solid #7b1fa2;
            height: 100%;
        }
        .flink {
            display: inline-block;
            background-color: var(--card-bg);
            color: #bb86fc;
            padding: 0.8rem 1.8rem;
            border-radius: 50px;
            text-decoration: none;
            margin: 0.5rem;
            border: 1px solid rgba(123, 31, 162, 0.3);
            transition: all 0.3s;
            font-weight: 500;
        }
        .flink:hover {
            background-color: rgba(123, 31, 162, 0.2);
            color: #e1bee7;
            transform: translateY(-3px);
            border-color: #7b1fa2;
        }
        .footer {
            background-color: #0a0a0a;
            border-top: 1px solid rgba(123, 31, 162, 0.3);
        }
        .social-icon {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.05);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin: 0 0.5rem;
            color: #bb86fc;
            transition: all 0.3s;
        }
        .social-icon:hover {
            background-color: #7b1fa2;
            color: white;
            transform: translateY(-5px);
        }
        .timeline-item {
            position: relative;
            padding-left: 3rem;
            margin-bottom: 3rem;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: linear-gradient(135deg, #7b1fa2, #1a237e);
        }
        .timeline-item::after {
            content: '';
            position: absolute;
            left: 9px;
            top: 20px;
            width: 2px;
            height: calc(100% + 1rem);
            background: rgba(123, 31, 162, 0.5);
        }
        .timeline-item:last-child::after {
            display: none;
        }
        @media (max-width: 768px) {
            .hero-section {
                min-height: 70vh;
                text-align: center;
            }
            .section-title {
                font-size: 1.8rem;
            }
            .game-card {
                margin-bottom: 2rem;
            }
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(90deg, #7b1fa2, #2196f3);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .marquee-container {
            overflow: hidden;
            background-color: rgba(26, 35, 126, 0.1);
            padding: 1.5rem 0;
            border-radius: 12px;
        }
        .marquee-content {
            display: flex;
            animation: marquee 30s linear infinite;
        }
        @keyframes marquee {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
