   
     :root {
    --primary-color: #ff2a6d; /* Hot Pink */
    --background-color: #0a0316; /* Near-Black Indigo */
    --surface-color: #1f0b3a; /* Dark Electric Purple */
    --text-color: #e6e6fa; /* Pale Lavender */
    --text-dark-color: #8b9dc3; /* Steel Blue-Gray */
    --error-color: #ff4040; /* Neon Red */
    --font-primary: 'Orbitron', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
}

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-secondary);
            background-color: var(--background-color);
            color: var(--text-color);
            overflow-x: hidden;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* --- 1. Header & Navigation --- */
        .header {
            background: rgba(15, 15, 26, 0.8);
            backdrop-filter: blur(10px);
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            z-index: 1000;
            border-bottom: 1px solid rgba(0, 255, 255, 0.1);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: var(--font-primary);
            font-size: 2rem;
            font-weight: 700;
            color: var(--text-color);
            text-decoration: none;
            text-shadow: 0 0 5px var(--primary-color);
        }

        .nav-links {
            list-style: none;
            display: flex;
        }

        .nav-links li {
            margin-left: 2.5rem;
        }

        .nav-links a {
            color: var(--text-color);
            text-decoration: none;
            font-weight: 700;
            position: relative;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--primary-color);
            text-shadow: 0 0 10px var(--primary-color);
        }

        .burger-menu {
            display: none;
            cursor: pointer;
            font-size: 1.8rem;
            color: var(--primary-color);
        }

        /* --- 2. Hero Section --- */
        .hero {
            height: 90vh;
            display: flex;
            align-items: center;
            text-align: center;
            background: linear-gradient(rgba(15, 15, 26, 0.6), var(--background-color)), url('image/banner.jpg') no-repeat center center/cover;
            position: relative;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            animation: fadeIn 2s ease-in-out;
        }

        .hero h1 {
            font-family: var(--font-primary);
            font-size: 4.5rem;
            margin-bottom: 1rem;
            line-height: 1.1;
            text-shadow: 0 0 15px var(--primary-color);
        }

        .hero p {
            font-size: 1.25rem;
            color: var(--text-dark-color);
            margin-bottom: 2rem;
        }

        .cta-button {
            background: var(--primary-color);
            color: #000;
            padding: 1rem 2.5rem;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 700;
            font-family: var(--font-primary);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
        }

        .cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 255, 255, 0.6);
        }

        /* --- General Section Styling --- */
        .section {
            padding: 6rem 0;
            text-align: center;
        }

        .section-title {
            font-family: var(--font-primary);
            font-size: 2.8rem;
            margin-bottom: 3rem;
            color: var(--primary-color);
            text-shadow: 0 0 10px var(--primary-color);
        }
        
        /* Fade-in Animation for Sections */
        .fade-in-section {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
        }

        .fade-in-section.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- 3. About Section --- */
        #about p {
            max-width: 800px;
            margin: 0 auto;
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-dark-color);
        }

        /* --- 4. Featured Games Section --- */
        #games {
            background-color: var(--surface-color);
        }
        .games-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .game-card {
            background: var(--background-color);
            border-radius: 10px;
            overflow: hidden;
            border: 1px solid rgba(0, 255, 255, 0.2);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
        }
        
        .game-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 255, 255, 0.2);
        }

        .game-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            filter: grayscale(50%);
            transition: filter 0.3s ease;
        }

        .game-card:hover img {
            filter: grayscale(0%);
        }

        .game-card-content {
            padding: 1.5rem;
            text-align: left;
        }
        
        .game-card-content h3 {
            font-family: var(--font-primary);
            color: var(--primary-color);
            margin-bottom: 0.5rem;
            font-size: 1.4rem;
        }

        .game-card-content p {
            color: var(--text-dark-color);
            line-height: 1.6;
        }
        
        /* --- 5 to 8. Game Spotlight Sections --- */
        .spotlight {
            display: flex;
            gap: 3rem;
            align-items: center;
            text-align: left;
        }
        .spotlight.reverse {
            flex-direction: row-reverse;
        }
        .spotlight-text {
            flex: 1;
        }
        .spotlight-text h3 {
            font-family: var(--font-primary);
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        .spotlight-image {
            flex: 1;
        }
        .spotlight-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 0 25px rgba(0, 255, 255, 0.2);
        }

        /* --- 9. Guides Section --- */
        #guides {
            background: var(--surface-color);
        }
        #guides p {
            max-width: 700px;
            margin: 0 auto 2rem auto;
            color: var(--text-dark-color);
        }
        .guides-icon {
            font-size: 4rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }

        /* --- 10. Footer Section --- */
        .footer {
            background: #0a0a14;
            padding: 4rem 0 2rem 0;
            border-top: 1px solid rgba(0, 255, 255, 0.1);
        }
        
        .footer .section-title {
            font-size: 2rem;
        }
        
        .social-links {
            margin: 2rem 0;
        }
        .social-links a {
            color: var(--text-dark-color);
            font-size: 2rem;
            margin: 0 1rem;
            transition: color 0.3s ease, transform 0.3s ease;
        }
        .social-links a:hover {
            color: var(--primary-color);
            transform: scale(1.2);
        }
        .footer p {
            color: var(--text-dark-color);
        }

        /* --- Responsive Design --- */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: var(--background-color);
                position: absolute;
                top: 65px;
                left: 0;
                padding: 1rem 0;
                border-bottom: 1px solid rgba(0, 255, 255, 0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 1rem 0;
                text-align: center;
            }
            .burger-menu {
                display: block;
            }
            .hero h1 {
                font-size: 2.8rem;
            }
            .spotlight, .spotlight.reverse {
                flex-direction: column;
                text-align: center;
            }
        }
        
        /* Keyframe Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
   