:root {
            --primary-purple: #6a0dad;
            --secondary-gold: #ffd700;
            --accent-teal: #20b2aa;
            --dark-bg: #1a1a2e;
            --light-text: #f8f9fa;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            background: linear-gradient(135deg, var(--dark-bg) 0%, #16213e 100%);
            color: var(--light-text);
            line-height: 1.7;
        }
        .logo-brand {
            font-family: 'Fantasy', Papyrus, cursive;
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(45deg, var(--secondary-gold), var(--accent-teal));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .nav-custom {
            background: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid var(--primary-purple);
        }
        .nav-link {
            color: var(--light-text) !important;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        .nav-link:hover {
            color: var(--secondary-gold) !important;
            transform: translateY(-2px);
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--secondary-gold);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        .nav-link:hover::after {
            width: 100%;
        }
        .hero-section {
            background: linear-gradient(rgba(106, 13, 173, 0.8), rgba(26, 26, 46, 0.9)), url('https://via.placeholder.com/1200x600') center/cover;
            padding: 100px 0;
            text-align: center;
            margin-bottom: 50px;
        }
        .content-section {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .content-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(106, 13, 173, 0.3);
        }
        h1, h2, h3 {
            color: var(--secondary-gold);
            margin-bottom: 1.5rem;
        }
        h1 {
            font-size: 3rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        h2 {
            font-size: 2.2rem;
            border-left: 4px solid var(--accent-teal);
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--accent-teal);
        }
        .keyword-highlight {
            background: linear-gradient(120deg, transparent 0%, rgba(255, 215, 0, 0.2) 50%, transparent 100%);
            padding: 2px 8px;
            border-radius: 4px;
            font-weight: 600;
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--secondary-gold);
            margin-bottom: 15px;
        }
        .img-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            margin: 25px 0;
            transition: transform 0.3s ease;
        }
        .img-container:hover {
            transform: scale(1.02);
        }
        .game-feature {
            text-align: center;
            padding: 20px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.08);
            margin-bottom: 20px;
            height: 100%;
            transition: all 0.3s ease;
        }
        .game-feature:hover {
            background: rgba(255, 255, 255, 0.12);
            transform: translateY(-5px);
        }
        footer {
            background: rgba(0, 0, 0, 0.8);
            padding: 40px 0 20px;
            margin-top: 50px;
            border-top: 2px solid var(--primary-purple);
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--primary-purple);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.5rem;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
            z-index: 1000;
        }
        .back-to-top:hover {
            background: var(--secondary-gold);
            color: var(--dark-bg);
            transform: translateY(-5px);
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .hero-section {
                padding: 60px 0;
            }
            .logo-brand {
                font-size: 1.8rem;
            }
        }
