:root {
            --primary-gold: #FFD700;
            --secondary-red: #FF5733;
            --dark-blue: #1a237e;
            --light-bg: #f8f9fa;
            --text-dark: #2c3e50;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }
        .main-container {
            background: white;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            margin-top: 20px;
            margin-bottom: 20px;
            overflow: hidden;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(45deg, var(--primary-gold), var(--secondary-red));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        .hero-section {
            background: linear-gradient(rgba(26, 35, 126, 0.8), rgba(255, 215, 0, 0.7)), url('https://via.placeholder.com/1200x600') center/cover no-repeat;
            color: white;
            padding: 80px 0;
            text-align: center;
            border-bottom: 5px solid var(--primary-gold);
        }
        .content-section {
            padding: 40px 0;
        }
        h1, h2, h3 {
            color: var(--dark-blue);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }
        h1 {
            font-size: 2.8rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        h2 {
            border-left: 5px solid var(--primary-gold);
            padding-left: 15px;
            margin-top: 2.5rem;
        }
        h3 {
            color: var(--secondary-red);
            margin-top: 2rem;
        }
        .highlight-box {
            background: linear-gradient(135deg, #fff9c4, #ffecb3);
            border-left: 5px solid var(--primary-gold);
            padding: 20px;
            border-radius: 0 10px 10px 0;
            margin: 25px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .game-image {
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
            margin: 20px 0;
        }
        .game-image:hover {
            transform: scale(1.03);
        }
        .btn-gold {
            background: linear-gradient(45deg, var(--primary-gold), #ffb300);
            color: var(--dark-blue);
            font-weight: 700;
            padding: 12px 30px;
            border-radius: 50px;
            border: none;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
        }
        .btn-gold:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
        }
        .btn-red {
            background: linear-gradient(45deg, var(--secondary-red), #c62828);
            color: white;
            font-weight: 700;
            padding: 12px 30px;
            border-radius: 50px;
            border: none;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(255, 87, 51, 0.4);
        }
        .btn-red:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 87, 51, 0.6);
        }
        .tag {
            display: inline-block;
            background: #e3f2fd;
            color: #1565c0;
            padding: 5px 15px;
            border-radius: 50px;
            margin: 5px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        .tag:hover {
            background: #bbdefb;
            transform: translateY(-2px);
            text-decoration: none;
            color: #0d47a1;
        }
        .stat-box {
            text-align: center;
            padding: 20px;
            border-radius: 15px;
            background: #f5f5f5;
            margin: 15px 0;
            transition: all 0.3s ease;
        }
        .stat-box:hover {
            background: #e0e0e0;
            transform: translateY(-5px);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--dark-blue);
            display: block;
        }
        .footer {
            background: var(--dark-blue);
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer a {
            color: var(--primary-gold);
            text-decoration: none;
        }
        .footer a:hover {
            color: white;
            text-decoration: underline;
        }
        .nav-link {
            font-weight: 600;
            transition: all 0.3s ease;
            color: var(--dark-blue) !important;
        }
        .nav-link:hover {
            color: var(--secondary-red) !important;
            transform: translateY(-2px);
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            .hero-section {
                padding: 50px 0;
            }
        }
        .content-paragraph {
            margin-bottom: 1.8rem;
            text-align: justify;
        }
        .rating-stars {
            color: var(--primary-gold);
            font-size: 1.2rem;
        }
        .player-review {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 20px;
            margin: 15px 0;
            border-left: 4px solid var(--primary-gold);
        }
        .toc {
            background: #f1f8ff;
            border-radius: 10px;
            padding: 20px;
            margin: 25px 0;
        }
        .toc ul {
            padding-left: 20px;
        }
        .toc li {
            margin-bottom: 10px;
        }
        .toc a {
            color: var(--dark-blue);
            text-decoration: none;
            font-weight: 600;
        }
        .toc a:hover {
            color: var(--secondary-red);
            text-decoration: underline;
        }
