        :root {
            --bg-color: #0f172a;
            --text-color: #f8fafc;
            --accent-color: #ff00cc;
            --card-bg: rgba(30, 41, 59, 0.6);
            --card-border: rgba(255, 255, 255, 0.08);
            --glass-border: 1px solid rgba(255, 255, 255, 0.1);
            --font-heading: 'Fredoka', sans-serif;
            --font-body: 'Outfit', sans-serif;
            --section-gap: 100px;
            --nav-height: 80px;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--bg-color);
            background-image: linear-gradient(to bottom, #0f172a, #1e293b);
            background-attachment: fixed;
            color: var(--text-color);
            min-height: 100vh;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Header & Nav */
        header {
            padding: 20px 0 0;
        }

        .main-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            margin-bottom: 40px;
        }

        .nav-logo {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 700;
            background: linear-gradient(to right, #ff00cc, #ffcc00);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
            letter-spacing: -0.5px;
        }

        .nav-links a {
            color: #94a3b8;
            text-decoration: none;
            margin-left: 32px;
            font-weight: 500;
            transition: color 0.2s;
            font-size: 1.05rem;
        }

        .nav-links a:hover {
            color: white;
        }

        /* Hero Section */
        .hero-section {
            text-align: center;
            padding: 60px 0 40px;
            position: relative;
        }

        .hero-title {
            font-family: var(--font-heading);
            font-size: 4.5rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 20px;
            background: linear-gradient(to right, #fff, #cbd5e1);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-tagline {
            font-size: 1.4rem;
            color: #94a3b8;
            max-width: 600px;
            margin: 0 auto 30px;
            font-weight: 300;
        }

        /* Search & Jump */
        .search-container {
            max-width: 500px;
            margin: 0 auto 40px;
            position: relative;
        }

        #game-search {
            width: 100%;
            padding: 18px 25px;
            padding-right: 50px;
            border-radius: 50px;
            border: 1px solid var(--card-border);
            background: rgba(255, 255, 255, 0.08);
            color: white;
            font-family: var(--font-body);
            font-size: 1.1rem;
            outline: none;
            transition: all 0.3s;
            backdrop-filter: blur(10px);
        }

        #game-search:focus {
            background: rgba(255, 255, 255, 0.12);
            border-color: #ff00cc;
            box-shadow: 0 0 20px rgba(255, 0, 204, 0.2);
        }

        .search-icon {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.6;
            pointer-events: none;
        }

        .jump-links {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .jump-btn {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--card-border);
            color: #e2e8f0;
            padding: 10px 20px;
            border-radius: 30px;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: all 0.2s;
        }

        .jump-btn:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: #ff00cc;
            color: white;
            transform: translateY(-2px);
        }

        /* Sections */
        .games-section {
            margin-bottom: var(--section-gap);
            scroll-margin-top: 140px;
        }

        .section-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 32px;
            padding: 16px 0;
            border-bottom: 1px solid var(--card-border);
        }

        .section-title {
            font-family: var(--font-heading);
            font-size: 2.2rem;
            color: white;
            letter-spacing: -0.5px;
        }

        .section-emoji {
            font-size: 2.2rem;
            filter: drop-shadow(0 0 20px rgba(255,255,255,0.2));
        }

        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 24px;
        }

        /* Card 2.0 */
        .game-card {
            background: var(--card-bg);
            border: var(--glass-border);
            border-radius: 24px;
            overflow: hidden;
            text-decoration: none;
            color: white;
            position: relative;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            backdrop-filter: blur(10px);
        }

        /* Spotlight Effect Layer */
        .game-card::before {
            content: '';
            position: absolute;
            height: 100%;
            width: 100%;
            top: 0;
            left: 0;
            background: radial-gradient(
                800px circle at var(--mouse-x) var(--mouse-y),
                rgba(255, 255, 255, 0.06),
                transparent 40%
            );
            opacity: 0;
            transition: opacity 0.5s;
            pointer-events: none;
            z-index: 3;
        }

        .game-card:hover::before {
            opacity: 1;
        }

        .game-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.4);
            border-color: rgba(255, 255, 255, 0.2);
        }

        .card-image {
            height: 180px;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: rgba(0,0,0,0.2);
        }

        .card-icon {
            font-size: 4rem;
            z-index: 2;
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
            filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
        }

        .game-card:hover .card-icon {
            transform: scale(1.15) rotate(5deg);
        }

        .card-content {
            padding: 24px;
            flex-grow: 1;
            z-index: 2;
        }

        .card-content h3 {
            font-family: var(--font-heading);
            font-size: 1.4rem;
            margin-bottom: 8px;
            color: #fff;
        }

        .card-content p {
            font-size: 0.95rem;
            color: #94a3b8;
            line-height: 1.6;
        }

        /* Footer */
        footer {
            margin-top: 80px;
            padding: 80px 0 40px;
            border-top: var(--glass-border);
            background: rgba(0,0,0,0.2);
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }

        .footer-col h4 {
            font-family: var(--font-heading);
            font-size: 1.2rem;
            margin-bottom: 24px;
            color: white;
        }

        .footer-col a {
            display: block;
            color: #94a3b8;
            text-decoration: none;
            margin-bottom: 12px;
            transition: color 0.2s;
        }

        .footer-col a:hover {
            color: var(--accent-color);
        }

        .copyright {
            text-align: center;
            color: #64748b;
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

        /* Badges */
        .game-badge {
            position: absolute;
            top: 16px;
            right: 16px;
            padding: 6px 14px;
            border-radius: 100px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            z-index: 10;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            letter-spacing: 0.5px;
        }

        .badge-hot {
            background: linear-gradient(135deg, #ff00cc, #ff3366);
            color: white;
        }

        .badge-popular {
            background: linear-gradient(135deg, #ffcc00, #ff9900);
            color: #0f172a;
        }

        @media (max-width: 768px) {
            .hero-title { font-size: 3.5rem; }
            .sticky-nav-container { top: 10px; margin-bottom: 40px; }
            .category-nav { padding: 8px; }
            .nav-pill { padding: 8px 16px; font-size: 0.9rem; }
            .games-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; }
            .card-image { height: 140px; }
            .card-icon { font-size: 3rem; }
            .card-content { padding: 20px; }
        }
