:root {
            --primary-dark: #0a0a2a;
            --primary-blue: #1a1aff;
            --accent-purple: #8a2be2;
            --accent-cyan: #00ffff;
            --light-bg: #f8f9fa;
            --text-light: #e0e0ff;
            --gradient-game: linear-gradient(135deg, #0a0a2a 0%, #1a1a4a 50%, #2a2a6a 100%);
        }
        body {
            font-family: 'Montserrat', sans-serif;
            color: #333;
            overflow-x: hidden;
            background-color: #f5f5f7;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
        }
        .game-gradient {
            background: var(--gradient-game);
            color: white;
        }
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 40px;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--primary-blue);
        }
        .section-title.center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .navbar-brand {
            font-family: 'Orbitron', sans-serif;
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--accent-cyan) !important;
        }
        .navbar-dark .navbar-nav .nav-link {
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
            margin: 0 8px;
            transition: all 0.3s ease;
        }
        .navbar-dark .navbar-nav .nav-link:hover {
            color: var(--accent-cyan);
            transform: translateY(-2px);
        }
        .hero-section {
            background: url('https://images.unsplash.com/photo-1511512578047-dfb367046420?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2071&q=80') center center/cover no-repeat;
            min-height: 90vh;
            display: flex;
            align-items: center;
            position: relative;
        }
        .hero-section:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 10, 42, 0.85);
        }
        .hero-content {
            position: relative;
            z-index: 2;
            padding: 60px 0;
        }
        .hero-title {
            font-size: 3.5rem;
            margin-bottom: 25px;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
        }
        .btn-game {
            background: linear-gradient(90deg, var(--primary-blue), var(--accent-purple));
            border: none;
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(26, 26, 255, 0.4);
        }
        .btn-game:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(26, 26, 255, 0.6);
            color: white;
        }
        .game-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            height: 100%;
        }
        .game-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        .game-card-img {
            height: 220px;
            object-fit: cover;
            width: 100%;
        }
        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-purple));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: white;
            font-size: 1.8rem;
        }
        .stats-counter {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-blue);
            font-family: 'Orbitron', sans-serif;
        }
        .contact-info-box {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            height: 100%;
            transition: all 0.3s ease;
        }
        .contact-info-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        .footer {
            background: var(--primary-dark);
            color: var(--text-light);
            padding-top: 60px;
        }
        .flink {
            color: var(--accent-cyan);
            text-decoration: none;
            padding: 8px 15px;
            border-radius: 5px;
            transition: all 0.3s ease;
            display: inline-block;
            margin: 5px;
            background: rgba(255, 255, 255, 0.05);
        }
        .flink:hover {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            transform: translateY(-3px);
        }
        .company-info {
            border-left: 4px solid var(--primary-blue);
            padding-left: 20px;
            margin: 25px 0;
        }
        .timeline {
            position: relative;
            padding-left: 30px;
        }
        .timeline:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(to bottom, var(--primary-blue), var(--accent-purple));
        }
        .timeline-item {
            position: relative;
            margin-bottom: 30px;
            padding-left: 20px;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: -33px;
            top: 5px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: var(--primary-blue);
            border: 3px solid white;
            box-shadow: 0 0 0 3px var(--primary-blue);
        }
        .game-showcase {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
            transition: all 0.4s ease;
        }
        .game-showcase:hover {
            transform: scale(1.02);
        }
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary-blue);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.5rem;
            z-index: 1000;
            opacity: 0;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(26, 26, 255, 0.4);
        }
        .scroll-to-top.visible {
            opacity: 1;
        }
        .text-gradient {
            background: linear-gradient(90deg, var(--primary-blue), var(--accent-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .team-member-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        .team-member-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        .team-img {
            height: 250px;
            object-fit: cover;
            width: 100%;
        }
