:root {
            --primary-color: #4a148c;
            --secondary-color: #ff6f00;
            --accent-color: #1a237e;
            --text-light: #f5f5f5;
            --bg-dark: #121212;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            background: linear-gradient(135deg, #0c0c2e 0%, #1a1a3e 100%);
            color: var(--text-light);
            line-height: 1.7;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(45deg, #ff6f00, #ffab00);
            -webkit-background-clip: text;
            -webkit-text-fill-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(0,0,0,0.6);
        }
        .hero-content {
            position: relative;
            z-index: 2;
        }
        .game-title {
            font-size: 3.5rem;
            font-weight: 900;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
            margin-bottom: 1rem;
        }
        .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);
        }
        h1, h2, h3 {
            color: #ffab00;
            margin-bottom: 1.5rem;
        }
        h1 {
            border-left: 5px solid var(--secondary-color);
            padding-left: 1rem;
            font-size: 2.5rem;
        }
        h2 {
            border-bottom: 2px solid var(--secondary-color);
            padding-bottom: 0.5rem;
            font-size: 2rem;
        }
        h3 {
            color: #ffd54f;
            font-size: 1.5rem;
        }
        .keyword-highlight {
            background: linear-gradient(45deg, #ff6f00, #ffab00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 700;
        }
        .btn-primary {
            background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        }
        .btn-secondary {
            background: linear-gradient(45deg, var(--secondary-color), #ff9800);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        .btn-secondary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255,111,0,0.3);
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }
        .tag-badge {
            background: rgba(255,111,0,0.2);
            color: #ffab00;
            padding: 8px 15px;
            border-radius: 20px;
            margin: 5px;
            display: inline-block;
            transition: all 0.3s ease;
            border: 1px solid rgba(255,111,0,0.3);
        }
        .tag-badge:hover {
            background: rgba(255,111,0,0.4);
            transform: scale(1.05);
        }
        .stats-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--secondary-color);
        }
        .review-card {
            background: rgba(255,255,255,0.08);
            border-radius: 10px;
            padding: 1.5rem;
            margin: 1rem 0;
            border-left: 4px solid var(--secondary-color);
        }
        .rating-stars {
            color: #ffd54f;
        }
        footer {
            background: rgba(0,0,0,0.8);
            padding: 3rem 0 1rem;
            margin-top: 4rem;
        }
        @media (max-width: 768px) {
            .game-title {
                font-size: 2.5rem;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
        }
        .content-paragraph {
            margin-bottom: 1.8rem;
            text-align: justify;
        }
        .image-caption {
            font-style: italic;
            text-align: center;
            margin-top: 0.5rem;
            color: #bdbdbd;
        }
        .nav-link {
            color: var(--text-light) !important;
            transition: color 0.3s ease;
        }
        .nav-link:hover {
            color: var(--secondary-color) !important;
        }
