:root {
            --primary-color: #0a0a1a;
            --secondary-color: #1a1a2e;
            --accent-color: #00d4ff;
            --accent-secondary: #ff2e63;
            --text-primary: #ffffff;
            --text-secondary: #b0b0d0;
            --gradient-primary: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 100%);
            --gradient-accent: linear-gradient(90deg, #00d4ff 0%, #0088ff 100%);
            --card-bg: rgba(30, 30, 60, 0.7);
            --shadow: 0 10px 30px rgba(0, 212, 255, 0.15);
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: var(--gradient-primary);
            color: var(--text-primary);
            overflow-x: hidden;
        }
        .navbar {
            background: rgba(10, 10, 26, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(0, 212, 255, 0.2);
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 700;
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .nav-link {
            color: var(--text-secondary) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s ease;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }
        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
            position: relative;
            padding-top: 80px;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 10, 26, 0.85);
        }
        .hero-content {
            position: relative;
            z-index: 2;
            padding: 4rem 0;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-subtitle {
            font-size: 1.2rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin-bottom: 2rem;
            line-height: 1.8;
        }
        .btn-primary-custom {
            background: var(--gradient-accent);
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            color: white;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .btn-primary-custom:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 3rem;
            text-align: center;
            position: relative;
        }
        .section-title::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: var(--gradient-accent);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        .service-card, .product-card {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 2rem;
            height: 100%;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 212, 255, 0.1);
            backdrop-filter: blur(10px);
        }
        .service-card:hover, .product-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-color);
            box-shadow: var(--shadow);
        }
        .service-icon, .product-icon {
            font-size: 2.5rem;
            color: var(--accent-color);
            margin-bottom: 1.5rem;
        }
        .stats-section {
            background: url('https://images.unsplash.com/photo-1511512578047-dfb367046420?ixlib=rb-4.0.3&auto=format&fit=crop&w=2071&q=80') no-repeat center center/cover;
            position: relative;
            padding: 5rem 0;
        }
        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 10, 26, 0.9);
        }
        .stat-item {
            text-align: center;
            position: relative;
            z-index: 2;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            background: var(--gradient-accent);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1;
        }
        .stat-label {
            color: var(--text-secondary);
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 0.5rem;
        }
        .team-member {
            text-align: center;
            margin-bottom: 2rem;
        }
        .team-img {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--accent-color);
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }
        .team-member:hover .team-img {
            transform: scale(1.05);
        }
        .footer {
            background: var(--secondary-color);
            padding: 4rem 0 2rem;
            border-top: 1px solid rgba(0, 212, 255, 0.2);
        }
        .footer-links h5 {
            color: var(--accent-color);
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }
        .footer-links ul {
            list-style: none;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .footer-links a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }
        .friendlink-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            gap: 1rem;
            margin-top: 2rem;
        }
        .flink {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            padding: 1rem;
            text-align: center;
            transition: all 0.3s ease;
            text-decoration: none;
            color: var(--text-secondary);
            display: block;
            border: 1px solid transparent;
        }
        .flink:hover {
            background: rgba(0, 212, 255, 0.1);
            border-color: var(--accent-color);
            color: var(--text-primary);
            transform: translateY(-3px);
        }
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            margin-top: 3rem;
            text-align: center;
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        .contact-info {
            background: var(--card-bg);
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 2rem;
            border-left: 4px solid var(--accent-color);
        }
        .contact-info i {
            color: var(--accent-color);
            margin-right: 10px;
            width: 20px;
        }
        .timeline {
            position: relative;
            padding-left: 2rem;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 2px;
            background: var(--gradient-accent);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 2rem;
            padding-left: 2rem;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -2.5rem;
            top: 5px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--accent-color);
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .section-title {
                font-size: 2rem;
            }
            .stat-number {
                font-size: 2.5rem;
            }
            .navbar-nav {
                text-align: center;
                background: rgba(10, 10, 26, 0.95);
                padding: 1rem;
                border-radius: 10px;
                margin-top: 1rem;
            }
        }
        .game-showcase {
            border-radius: 15px;
            overflow: hidden;
            height: 300px;
            position: relative;
            margin-bottom: 2rem;
        }
        .game-showcase img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .game-showcase:hover img {
            transform: scale(1.05);
        }
        .game-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(10,10,26,0.9) 0%, transparent 100%);
            padding: 2rem;
            color: white;
        }
        .news-card {
            background: var(--card-bg);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
            border: 1px solid rgba(0, 212, 255, 0.1);
        }
        .news-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent-color);
        }
        .news-date {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: var(--accent-color);
            color: var(--primary-color);
            padding: 0.5rem 1rem;
            border-radius: 5px;
            font-weight: 600;
        }
