:root {
            --primary-gold: #FFD700;
            --royal-purple: #8B008B;
            --deep-red: #B22222;
            --rich-green: #006400;
            --cream-bg: #FFFDD0;
        }
        body {
            background-color: var(--cream-bg);
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
        }
        .navbar-brand {
            font-weight: bold;
            font-size: 1.8rem;
            color: var(--royal-purple) !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        .nav-link {
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            color: var(--primary-gold) !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(135deg, var(--royal-purple), var(--deep-red));
            color: white;
            padding: 4rem 0;
            border-bottom: 5px solid var(--primary-gold);
        }
        .btn-gold {
            background-color: var(--primary-gold);
            color: #000;
            font-weight: bold;
            border: none;
            transition: all 0.3s ease;
        }
        .btn-gold:hover {
            background-color: #FFC400;
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .content-section {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            padding: 2rem;
            margin-bottom: 2rem;
        }
        h1, h2, h3 {
            color: var(--royal-purple);
            margin-bottom: 1.5rem;
        }
        h1 {
            border-bottom: 3px solid var(--primary-gold);
            padding-bottom: 0.5rem;
        }
        .highlight {
            background-color: rgba(255, 215, 0, 0.2);
            padding: 0.5rem 1rem;
            border-left: 4px solid var(--primary-gold);
            margin: 1.5rem 0;
        }
        .game-image {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
            margin-bottom: 1.5rem;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .tag {
            display: inline-block;
            background-color: var(--royal-purple);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            margin: 0.3rem;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: var(--primary-gold);
            color: #000;
            text-decoration: none;
            transform: translateY(-3px);
        }
        .footer {
            background-color: var(--royal-purple);
            color: white;
            padding: 3rem 0 1rem;
            margin-top: 3rem;
        }
        .footer a {
            color: var(--primary-gold);
            transition: all 0.3s ease;
        }
        .footer a:hover {
            color: white;
            text-decoration: underline;
        }
        .stats-box {
            background: linear-gradient(135deg, var(--royal-purple), var(--deep-red));
            color: white;
            border-radius: 10px;
            padding: 1.5rem;
            text-align: center;
            margin: 1.5rem 0;
        }
        .stats-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-gold);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 2rem 0;
            }
            .navbar-brand {
                font-size: 1.5rem;
            }
        }
