:root {
            --primary-color: #d4af37;
            --secondary-color: #2c5530;
            --accent-color: #b22222;
            --text-dark: #2c1810;
            --text-light: #f8f9fa;
            --bg-light: #fff9e6;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            background: linear-gradient(135deg, #fff9e6 0%, #f5e6c8 100%);
            color: var(--text-dark);
            line-height: 1.7;
        }
        .hero-section {
            background: linear-gradient(rgba(44, 85, 48, 0.8), rgba(44, 85, 48, 0.9)), url('https://via.placeholder.com/1200x600') center/cover no-repeat;
            color: white;
            padding: 4rem 0;
            border-bottom: 5px solid var(--primary-color);
        }
        .game-logo {
            font-family: 'Georgia', serif;
            font-size: 3.5rem;
            font-weight: bold;
            color: var(--primary-color);
            text-shadow: 3px 3px 0px var(--secondary-color);
            margin-bottom: 1rem;
        }
        .nav-custom {
            background-color: var(--secondary-color);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .nav-custom .navbar-brand {
            color: var(--primary-color) !important;
            font-weight: bold;
            font-size: 1.5rem;
        }
        .nav-custom .nav-link {
            color: var(--text-light) !important;
            transition: all 0.3s ease;
        }
        .nav-custom .nav-link:hover {
            color: var(--primary-color) !important;
            transform: translateY(-2px);
        }
        .content-section {
            background: white;
            border-radius: 12px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.08);
            padding: 2.5rem;
            margin: 2rem 0;
        }
        h1, h2, h3 {
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
        }
        h1 {
            border-bottom: 3px solid var(--primary-color);
            padding-bottom: 0.5rem;
        }
        h2 {
            border-left: 5px solid var(--accent-color);
            padding-left: 1rem;
        }
        .key-feature {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 10px;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-left: 4px solid var(--primary-color);
            transition: transform 0.3s ease;
        }
        .key-feature:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .btn-gold {
            background: linear-gradient(135deg, var(--primary-color) 0%, #b8941f 100%);
            color: white;
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
        }
        .btn-gold:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
            color: white;
        }
        .btn-red {
            background: linear-gradient(135deg, var(--accent-color) 0%, #8b1a1a 100%);
            color: white;
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(178, 34, 34, 0.3);
        }
        .btn-red:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(178, 34, 34, 0.4);
            color: white;
        }
        .game-image {
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            transition: transform 0.5s ease;
            margin: 1.5rem 0;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .tag-badge {
            background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            margin: 0.25rem;
            display: inline-block;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        .tag-badge:hover {
            background: linear-gradient(135deg, var(--secondary-color) 0%, #1e3a23 100%);
            color: white;
            transform: translateY(-3px);
            text-decoration: none;
        }
        .rating-stars {
            color: var(--primary-color);
            font-size: 1.2rem;
        }
        .footer-section {
            background: var(--secondary-color);
            color: var(--text-light);
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-links a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: var(--primary-color);
        }
        .highlight-text {
            background: linear-gradient(120deg, var(--primary-color) 0%, var(--primary-color) 100%);
            background-repeat: no-repeat;
            background-size: 100% 0.3em;
            background-position: 0 88%;
            font-weight: bold;
        }
        @media (max-width: 768px) {
            .game-logo {
                font-size: 2.5rem;
            }
            .content-section {
                padding: 1.5rem;
            }
            .hero-section {
                padding: 2rem 0;
            }
        }
