:root {
            --primary-color: #4a148c;
            --secondary-color: #ff6f00;
            --accent-color: #00bcd4;
            --dark-space: #0d1b2a;
            --star-glow: #e0e0e0;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            background: linear-gradient(135deg, var(--dark-space) 0%, #1b263b 100%);
            color: #e0e0e0;
            line-height: 1.7;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 10px rgba(255, 111, 0, 0.3);
        }
        .hero-section {
            background: url('https://via.placeholder.com/1200x600') center/cover no-repeat;
            min-height: 60vh;
            position: relative;
            border-bottom: 3px solid var(--secondary-color);
        }
        .hero-overlay {
            background: rgba(13, 27, 42, 0.85);
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            align-items: center;
        }
        .content-section {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2rem;
            margin: 2rem 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 10px 30px rgba(0, 0, 0, 0.3);
        }
        h1, h2, h3 {
            color: var(--star-glow);
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        h1 {
            font-size: 2.8rem;
            text-align: center;
            background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin: 2rem 0;
        }
        h2 {
            font-size: 2rem;
            border-left: 4px solid var(--secondary-color);
            padding-left: 1rem;
            margin-top: 3rem;
        }
        h3 {
            font-size: 1.5rem;
            color: var(--accent-color);
            margin-top: 2rem;
        }
        .keyword-highlight {
            background: linear-gradient(120deg, transparent 0%, rgba(255, 111, 0, 0.2) 50%, transparent 100%);
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .feature-icon {
            font-size: 2rem;
            color: var(--secondary-color);
            margin-right: 1rem;
        }
        .nav-pills .nav-link {
            color: var(--star-glow);
            border-radius: 25px;
            margin: 0.2rem;
            transition: all 0.3s ease;
        }
        .nav-pills .nav-link:hover, .nav-pills .nav-link.active {
            background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
            color: white;
        }
        .game-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            transition: transform 0.3s ease;
            margin: 2rem 0;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .rating-stars {
            color: var(--secondary-color);
            font-size: 1.2rem;
        }
        footer {
            background: rgba(0, 0, 0, 0.8);
            padding: 2rem 0;
            margin-top: 4rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .content-section {
                padding: 1.5rem;
            }
        }
        .content-paragraph {
            margin-bottom: 1.8rem;
            text-align: justify;
        }
        .special-symbol {
            color: var(--secondary-color);
            font-weight: bold;
            margin: 0 0.3rem;
        }
