:root {
            --primary-gold: #FFD700;
            --secondary-blue: #1E3A8A;
            --accent-red: #DC2626;
            --text-dark: #1F2937;
            --bg-light: #FEFCE8;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background: linear-gradient(135deg, #FEFCE8 0%, #FEF3C7 100%);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            background: linear-gradient(45deg, var(--primary-gold), var(--accent-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(30, 58, 138, 0.9), rgba(220, 38, 38, 0.8)), url('https://via.placeholder.com/1200x600') center/cover;
            color: white;
            padding: 4rem 0;
            border-radius: 0 0 2rem 2rem;
            margin-bottom: 3rem;
        }
        .content-section {
            background: white;
            border-radius: 1rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            padding: 2.5rem;
            margin-bottom: 2rem;
        }
        .btn-gold {
            background: linear-gradient(45deg, var(--primary-gold), #FFC107);
            color: var(--text-dark);
            font-weight: 600;
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .btn-gold:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-gold);
            margin-bottom: 1rem;
        }
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin: 1.5rem 0;
        }
        .tag {
            background: var(--secondary-blue);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-size: 0.9rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background: var(--primary-gold);
            color: var(--text-dark);
            transform: scale(1.05);
        }
        .game-stat {
            text-align: center;
            padding: 1.5rem;
            border-radius: 1rem;
            background: linear-gradient(135deg, #FEF3C7, #FDE68A);
            margin: 1rem 0;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--accent-red);
            display: block;
        }
        .review-card {
            border-left: 4px solid var(--primary-gold);
            padding-left: 1.5rem;
            margin: 1.5rem 0;
        }
        .rating-stars {
            color: var(--primary-gold);
            margin-bottom: 0.5rem;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 2rem 0;
                border-radius: 0 0 1rem 1rem;
            }
            .content-section {
                padding: 1.5rem;
                margin-bottom: 1.5rem;
            }
            .navbar-brand {
                font-size: 1.5rem;
            }
        }
        h1, h2, h3 {
            color: var(--secondary-blue);
            margin-bottom: 1.5rem;
        }
        h1 {
            font-size: 2.5rem;
            font-weight: 800;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        h2 {
            font-size: 2rem;
            border-bottom: 3px solid var(--primary-gold);
            padding-bottom: 0.5rem;
        }
        h3 {
            font-size: 1.5rem;
            color: var(--accent-red);
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(120deg, var(--primary-gold) 0%, var(--primary-gold) 100%);
            background-repeat: no-repeat;
            background-size: 100% 0.4em;
            background-position: 0 88%;
            font-weight: 600;
        }
        img {
            border-radius: 1rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin: 1.5rem 0;
            max-width: 100%;
            height: auto;
        }
        footer {
            background: var(--secondary-blue);
            color: white;
            padding: 3rem 0 1rem;
            margin-top: 3rem;
        }
        .game-type-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            margin: 2rem 0;
        }
        .game-type-link {
            color: var(--primary-gold);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .game-type-link:hover {
            color: white;
            text-decoration: underline;
        }
