:root {
            --primary-dark: #0a0a16;
            --primary-accent: #00c6ff;
            --secondary-accent: #9d00ff;
            --text-light: #f0f0f0;
            --text-muted: #aaaaaa;
            --card-bg: #151522;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background-color: var(--primary-dark);
            color: var(--text-light);
            overflow-x: hidden;
        }
        .gradient-bg {
            background: linear-gradient(135deg, var(--primary-dark) 0%, #1a1a2e 50%, #16213e 100%);
        }
        .gradient-text {
            background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: inline-block;
        }
        .nav-shadow {
            box-shadow: 0 4px 30px rgba(0, 198, 255, 0.15);
        }
        .hero-section {
            min-height: 100vh;
            background: radial-gradient(ellipse at center, rgba(0, 198, 255, 0.1) 0%, transparent 70%),
                        linear-gradient(var(--primary-dark), var(--primary-dark));
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, var(--primary-accent) 0%, transparent 70%);
            top: 10%;
            left: 10%;
            filter: blur(60px);
            opacity: 0.2;
            animation: float 25s infinite ease-in-out;
        }
        .hero-section::after {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, var(--secondary-accent) 0%, transparent 70%);
            bottom: 10%;
            right: 10%;
            filter: blur(80px);
            opacity: 0.15;
            animation: float 30s infinite ease-in-out reverse;
        }
        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(30px, -50px) rotate(120deg); }
            66% { transform: translate(-20px, 70px) rotate(240deg); }
        }
        .game-card {
            background: var(--card-bg);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            overflow: hidden;
        }
        .game-card:hover {
            transform: translateY(-15px);
            border-color: rgba(0, 198, 255, 0.3);
            box-shadow: 0 20px 40px rgba(0, 198, 255, 0.15);
        }
        .flink {
            color: var(--text-muted);
            text-decoration: none;
            padding: 8px 16px;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            background: rgba(255, 255, 255, 0.02);
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .flink:hover {
            color: var(--primary-accent);
            border-color: rgba(0, 198, 255, 0.3);
            background: rgba(0, 198, 255, 0.05);
            transform: translateY(-2px);
        }
        .section-title {
            position: relative;
            display: inline-block;
            margin-bottom: 3rem;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
            border-radius: 2px;
        }
        .timeline-item {
            border-left: 3px solid var(--primary-accent);
            padding-left: 30px;
            padding-bottom: 40px;
            position: relative;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -10px;
            top: 0;
            width: 17px;
            height: 17px;
            background: var(--primary-accent);
            border-radius: 50%;
            box-shadow: 0 0 10px var(--primary-accent);
        }
        .btn-mayhem {
            background: linear-gradient(90deg, var(--primary-accent), var(--secondary-accent));
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        .btn-mayhem::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, var(--secondary-accent), var(--primary-accent));
            transition: left 0.5s ease;
            z-index: -1;
        }
        .btn-mayhem:hover::before {
            left: 0;
        }
        .btn-mayhem:hover {
            box-shadow: 0 10px 25px rgba(157, 0, 255, 0.3);
            transform: translateY(-3px);
        }
        footer a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        footer a:hover {
            color: var(--primary-accent);
        }
        .pulse {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(0, 198, 255, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(0, 198, 255, 0); }
            100% { box-shadow: 0 0 0 0 rgba(0, 198, 255, 0); }
        }
        @media (max-width: 768px) {
            .hero-section {
                min-height: 90vh;
            }
            .display-4 {
                font-size: 2.5rem;
            }
        }
