:root {
            --primary-purple: #8B5CF6;
            --secondary-pink: #EC4899;
            --accent-teal: #06D6A0;
            --dark-bg: #1F2937;
            --light-text: #F9FAFB;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: var(--light-text);
            line-height: 1.7;
        }
        .navbar-brand {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(45deg, var(--secondary-pink), var(--primary-purple));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 2px 10px rgba(236, 72, 153, 0.3);
        }
        .hero-section {
            background: linear-gradient(rgba(31, 41, 55, 0.9), rgba(26, 26, 46, 0.9)), 
                        url('https://via.placeholder.com/1200x600') center/cover;
            padding: 100px 0;
            text-align: center;
            border-bottom: 3px solid var(--primary-purple);
        }
        .content-section {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 30px;
            margin: 25px 0;
            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 15px 30px rgba(0, 0, 0, 0.4);
        }
        h1, h2, h3 {
            color: var(--accent-teal);
            margin-bottom: 1.5rem;
        }
        h1 {
            font-size: 2.8rem;
            text-align: center;
            margin-bottom: 2rem;
            text-shadow: 0 2px 8px rgba(6, 214, 160, 0.3);
        }
        h2 {
            border-left: 4px solid var(--secondary-pink);
            padding-left: 15px;
            margin-top: 2.5rem;
        }
        .keyword-highlight {
            color: var(--secondary-pink);
            font-weight: 700;
            background: rgba(236, 72, 153, 0.1);
            padding: 2px 6px;
            border-radius: 4px;
        }
        .game-image {
            width: 100%;
            border-radius: 10px;
            margin: 20px 0;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
            transition: transform 0.4s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .feature-icon {
            font-size: 2rem;
            color: var(--primary-purple);
            margin-right: 15px;
        }
        .nav-pills .nav-link {
            color: var(--light-text);
            border-radius: 25px;
            margin: 5px;
            transition: all 0.3s ease;
        }
        .nav-pills .nav-link:hover, .nav-pills .nav-link.active {
            background: linear-gradient(45deg, var(--primary-purple), var(--secondary-pink));
            color: white;
        }
        footer {
            background: rgba(0, 0, 0, 0.7);
            padding: 40px 0;
            margin-top: 50px;
            border-top: 2px solid var(--primary-purple);
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: linear-gradient(45deg, var(--primary-purple), var(--secondary-pink));
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
            transition: all 0.3s ease;
            z-index: 1000;
        }
        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(139, 92, 246, 0.6);
            color: white;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            .hero-section {
                padding: 60px 0;
            }
            .content-section {
                padding: 20px;
            }
        }
