:root {
            --primary-purple: #6a0dad;
            --magic-blue: #4169e1;
            --spark-gold: #ffd700;
            --dark-midnight: #1a1a2e;
            --light-mystic: #f8f9fa;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
            color: #ffffff;
            line-height: 1.7;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(45deg, #ffd700, #ff8c00, #ff1493);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .hero-section {
            background: url('https://via.placeholder.com/1200x600') center/cover no-repeat;
            padding: 100px 0;
            position: relative;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(26, 26, 46, 0.85);
        }
        .hero-content {
            position: relative;
            z-index: 2;
        }
        .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);
        }
        h1, h2, h3 {
            color: var(--spark-gold);
            margin-bottom: 1.5rem;
        }
        h1 {
            font-size: 2.8rem;
            text-align: center;
            text-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
        }
        h2 {
            font-size: 2rem;
            border-left: 4px solid var(--spark-gold);
            padding-left: 15px;
        }
        h3 {
            font-size: 1.5rem;
            color: #ff8c00;
        }
        .feature-icon {
            font-size: 2rem;
            color: var(--spark-gold);
            margin-right: 15px;
        }
        .game-image {
            border-radius: 10px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.5);
            transition: transform 0.3s ease;
            margin: 20px 0;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .highlight-text {
            background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
            padding: 15px;
            border-left: 3px solid var(--spark-gold);
            margin: 20px 0;
            font-style: italic;
        }
        .nav-link {
            color: rgba(255,255,255,0.8) !important;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        .nav-link:hover {
            color: var(--spark-gold) !important;
            transform: translateX(5px);
        }
        footer {
            background: var(--dark-midnight);
            padding: 40px 0 20px;
            margin-top: 50px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        .keyword-badge {
            background: linear-gradient(45deg, #6a0dad, #4169e1);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            margin: 0 5px 5px 0;
            display: inline-block;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .hero-section {
                padding: 60px 0;
            }
        }
