body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; margin: 0; padding: 0; background-color: #fff9e6; }
        header { background-color: #ff6600; color: white; padding: 15px 0; text-align: center; position: sticky; top: 0; z-index: 100; }
        .logo { font-size: 2.5em; font-weight: bold; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
        nav { display: flex; justify-content: center; gap: 20px; margin-top: 10px; }
        nav a { color: white; text-decoration: none; font-weight: bold; }
        .mobile-menu-btn { display: none; background: none; border: none; color: white; font-size: 1.5em; cursor: pointer; }
        .container { max-width: 1200px; margin: 20px auto; padding: 0 20px; }
        h1 { color: #ff6600; border-bottom: 3px solid #ffcc00; padding-bottom: 10px; }
        h2 { color: #333; border-left: 5px solid #ff6600; padding-left: 10px; margin-top: 30px; }
        h3 { color: #666; margin-top: 25px; }
        .download-btn, .login-btn { display: inline-block; padding: 12px 25px; background-color: #ff6600; color: white; text-decoration: none; border-radius: 5px; font-weight: bold; margin: 15px 0; }
        .game-image { width: 100%; height: auto; margin: 20px 0; border-radius: 8px; }
        .stats-box { background-color: #fff3cd; padding: 15px; border-radius: 8px; margin: 20px 0; }
        footer { background-color: #333; color: white; text-align: center; padding: 20px 0; margin-top: 40px; }
        .tags { margin: 20px 0; }
        .tag { display: inline-block; background-color: #ffcc00; color: #333; padding: 5px 10px; border-radius: 15px; margin: 5px; text-decoration: none; }
        @media (max-width: 768px) {
            nav { display: none; flex-direction: column; align-items: center; }
            nav.active { display: flex; }
            .mobile-menu-btn { display: block; position: absolute; right: 20px; top: 20px; }
            .logo { font-size: 2em; }
        }
