:root {
            --primary-color: #2E8B57;
            --secondary-color: #FF6B35;
            --accent-color: #1E3A8A;
            --text-dark: #2D3748;
            --text-light: #718096;
            --bg-light: #F7FAFC;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--bg-light);
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-color) !important;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
            color: white;
            padding: 4rem 0;
            margin-bottom: 2rem;
        }
        .game-feature {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }
        .game-feature:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        }
        .btn-primary-custom {
            background-color: var(--secondary-color);
            border: none;
            padding: 0.75rem 2rem;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        .btn-primary-custom:hover {
            background-color: #e55a2b;
            transform: scale(1.05);
        }
        .tag {
            display: inline-block;
            background-color: #E2E8F0;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            margin: 0.25rem;
            font-size: 0.875rem;
            transition: all 0.2s ease;
        }
        .tag:hover {
            background-color: var(--primary-color);
            color: white;
            cursor: pointer;
        }
        .game-image {
            border-radius: 12px;
            overflow: hidden;
            margin: 1.5rem 0;
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
        }
        .rating-stars {
            color: #F6AD55;
        }
        .section-title {
            border-left: 4px solid var(--secondary-color);
            padding-left: 1rem;
            margin: 2rem 0 1.5rem;
        }
        .footer {
            background-color: var(--text-dark);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 2rem 0;
            }
            .navbar-collapse {
                background-color: white;
                padding: 1rem;
                border-radius: 8px;
                margin-top: 1rem;
                box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            }
        }
