:root {
            --primary-dark: #0a0e17;
            --primary-accent: #00d9ff;
            --secondary-accent: #ff2a6d;
            --text-light: #f0f6ff;
            --text-muted: #b0bac9;
            --card-bg: #111827;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background-color: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5 {
            font-weight: 700;
            color: var(--text-light);
        }
        .gradient-text {
            background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .section-padding {
            padding-top: 6rem;
            padding-bottom: 6rem;
        }
        .hero-section {
            background: radial-gradient(ellipse at center, #1a2332 0%, var(--primary-dark) 70%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: linear-gradient(90deg, rgba(0,217,255,0.1), rgba(255,42,109,0.05));
            filter: blur(60px);
            top: 20%;
            right: 10%;
        }
        .nav-bar {
            background-color: rgba(10, 14, 23, 0.92);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255,255,255,0.05);
            transition: all 0.3s ease;
        }
        .nav-link {
            color: var(--text-light) !important;
            font-weight: 500;
            margin: 0 0.75rem;
            position: relative;
            transition: color 0.3s;
        }
        .nav-link:hover {
            color: var(--primary-accent) !important;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--primary-accent);
            transition: width 0.3s;
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .btn-primary-custom {
            background: linear-gradient(135deg, var(--primary-accent), #0077ff);
            border: none;
            border-radius: 50px;
            padding: 0.9rem 2rem;
            font-weight: 600;
            color: white;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 217, 255, 0.3);
        }
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 217, 255, 0.4);
            color: white;
        }
        .feature-card, .team-card, .game-card {
            background-color: var(--card-bg);
            border-radius: 16px;
            border: 1px solid rgba(255,255,255,0.05);
            padding: 2rem;
            height: 100%;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .feature-card:hover, .team-card:hover, .game-card:hover {
            transform: translateY(-10px);
            border-color: rgba(0, 217, 255, 0.3);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }
        .icon-wrapper {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(0,217,255,0.1), rgba(255,42,109,0.1));
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }
        .section-title {
            position: relative;
            padding-bottom: 1.5rem;
            margin-bottom: 3rem;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
            border-radius: 2px;
        }
        .footer {
            background-color: #0a0b0f;
            padding-top: 4rem;
            padding-bottom: 2rem;
            border-top: 1px solid rgba(255,255,255,0.05);
        }
        .footer a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s;
        }
        .footer a:hover {
            color: var(--primary-accent);
        }
        .friendlink a.flink {
            display: inline-block;
            background-color: rgba(255,255,255,0.03);
            padding: 0.7rem 1.5rem;
            border-radius: 8px;
            margin: 0.5rem;
            border: 1px solid transparent;
            transition: all 0.3s;
        }
        .friendlink a.flink:hover {
            background-color: rgba(0,217,255,0.05);
            border-color: rgba(0,217,255,0.2);
            transform: scale(1.05);
        }
        .timeline {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }
        .timeline::after {
            content: '';
            position: absolute;
            width: 4px;
            background-color: rgba(0,217,255,0.3);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -2px;
            border-radius: 2px;
        }
        .timeline-item {
            padding: 10px 40px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
        }
        .timeline-item:nth-child(odd) {
            left: 0;
        }
        .timeline-item:nth-child(even) {
            left: 50%;
        }
        .timeline-content {
            padding: 20px;
            background-color: var(--card-bg);
            border-radius: 12px;
            border: 1px solid rgba(255,255,255,0.05);
        }
        .game-screenshot {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            transition: transform 0.5s;
        }
        .game-screenshot:hover {
            transform: scale(1.03);
        }
        .contact-info-box {
            background-color: var(--card-bg);
            border-radius: 12px;
            padding: 2rem;
            border-left: 4px solid var(--primary-accent);
        }
        @media (max-width: 768px) {
            .section-padding {
                padding-top: 4rem;
                padding-bottom: 4rem;
            }
            .timeline::after {
                left: 31px;
            }
            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }
            .timeline-item:nth-child(even) {
                left: 0;
            }
            .hero-section h1 {
                font-size: 2.5rem;
            }
        }
