:root {
            --primary-spice: #d35400;
            --secondary-spice: #e67e22;
            --accent-yellow: #f39c12;
            --dark-brown: #7e5109;
            --light-beige: #fef9e7;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            background-color: var(--light-beige);
            color: #333;
            line-height: 1.6;
        }
        .navbar-brand {
            font-weight: 800;
            color: var(--primary-spice) !important;
            font-size: 1.8rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        .nav-link {
            font-weight: 500;
            transition: color 0.3s ease;
        }
        .nav-link:hover {
            color: var(--primary-spice) !important;
        }
        .hero-section {
            background: linear-gradient(135deg, var(--primary-spice) 0%, var(--accent-yellow) 100%);
            color: white;
            padding: 4rem 0;
            border-radius: 0 0 30px 30px;
            margin-bottom: 3rem;
        }
        .btn-spice {
            background-color: var(--primary-spice);
            color: white;
            font-weight: 600;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            border: none;
            transition: all 0.3s ease;
        }
        .btn-spice:hover {
            background-color: var(--secondary-spice);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .btn-login {
            background-color: transparent;
            color: white;
            border: 2px solid white;
            font-weight: 600;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .btn-login:hover {
            background-color: white;
            color: var(--primary-spice);
        }
        .section-title {
            color: var(--dark-brown);
            border-left: 5px solid var(--accent-yellow);
            padding-left: 1rem;
            margin: 2rem 0 1.5rem;
        }
        .content-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            padding: 2rem;
            margin-bottom: 2rem;
            transition: transform 0.3s ease;
        }
        .content-card:hover {
            transform: translateY(-5px);
        }
        .game-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin: 1.5rem 0;
        }
        .tag {
            display: inline-block;
            background-color: #f8f9fa;
            color: var(--dark-brown);
            padding: 0.3rem 0.8rem;
            border-radius: 50px;
            margin: 0.3rem;
            font-size: 0.85rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        .tag:hover {
            background-color: var(--accent-yellow);
            color: white;
            transform: scale(1.05);
        }
        .stats-box {
            text-align: center;
            padding: 1.5rem;
            border-radius: 10px;
            background: linear-gradient(135deg, #fef9e7 0%, #fdebd0 100%);
            margin: 1rem 0;
        }
        .stats-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-spice);
            margin-bottom: 0.5rem;
        }
        .review-card {
            background: white;
            border-radius: 10px;
            padding: 1.5rem;
            margin: 1rem 0;
            border-left: 4px solid var(--accent-yellow);
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        .rating {
            color: var(--accent-yellow);
            margin-bottom: 0.5rem;
        }
        footer {
            background-color: var(--dark-brown);
            color: white;
            padding: 3rem 0 1rem;
            margin-top: 3rem;
        }
        .footer-links a {
            color: #fdebd0;
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
            margin-bottom: 0.5rem;
        }
        .footer-links a:hover {
            color: white;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 2rem 0;
                border-radius: 0 0 20px 20px;
            }
            .content-card {
                padding: 1.5rem;
            }
        }
