:root {
            --primary-color: #ff6b35;
            --secondary-color: #1e3a8a;
            --accent-color: #f59e0b;
            --text-color: #334155;
            --light-bg: #f8fafc;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            color: var(--text-color);
            line-height: 1.7;
        }
        .hero-section {
            background: linear-gradient(135deg, var(--secondary-color) 0%, #0f172a 100%);
            color: white;
            padding: 4rem 0;
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.1"><path fill="white" d="M500,250c138,0,250,112,250,250S638,750,500,750S250,638,250,500S362,250,500,250z"/>') center/contain no-repeat;
        }
        .game-logo {
            font-family: 'Arial Black', Gadget, sans-serif;
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--accent-color);
            text-shadow: 3px 3px 0 var(--secondary-color);
            margin-bottom: 1rem;
        }
        .section-title {
            color: var(--secondary-color);
            border-left: 5px solid var(--primary-color);
            padding-left: 1rem;
            margin: 2rem 0 1.5rem;
        }
        .content-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            padding: 2rem;
            margin-bottom: 2rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #e2e8f0;
        }
        .content-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        }
        .key-feature {
            background: var(--light-bg);
            border-left: 4px solid var(--primary-color);
            padding: 1rem 1.5rem;
            margin: 1.5rem 0;
        }
        .btn-primary-custom {
            background: linear-gradient(135deg, var(--primary-color) 0%, #e55a2b 100%);
            border: none;
            border-radius: 8px;
            padding: 0.75rem 2rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-primary-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
        }
        .tag {
            display: inline-block;
            background: var(--light-bg);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            margin: 0.25rem;
            font-size: 0.875rem;
            transition: all 0.3s ease;
            text-decoration: none;
            color: var(--text-color);
        }
        .tag:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-2px);
        }
        .game-image {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            margin: 1.5rem 0;
        }
        .rating-stars {
            color: var(--accent-color);
            font-size: 1.2rem;
        }
        .footer {
            background: var(--secondary-color);
            color: white;
            padding: 3rem 0 1.5rem;
        }
        .footer a {
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover {
            color: white;
        }
        .nav-link {
            font-weight: 500;
            transition: color 0.3s ease;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.5rem;
            color: var(--secondary-color) !important;
        }
        @media (max-width: 768px) {
            .game-logo {
                font-size: 2rem;
            }
            .content-card {
                padding: 1.5rem;
            }
        }
