body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 2px solid #FF9933; }
        .logo { font-size: 28px; font-weight: bold; color: #FF9933; text-shadow: 1px 1px 2px #000; }
        nav ul { display: flex; list-style: none; gap: 20px; }
        nav a { text-decoration: none; color: #333; font-weight: 500; }
        .mobile-menu-btn { display: none; background: #FF9933; color: white; border: none; padding: 8px 12px; border-radius: 5px; }
        h1 { font-size: 32px; margin: 30px 0 15px; color: #138808; }
        h2 { font-size: 24px; margin: 25px 0 12px; color: #FF9933; }
        h3 { font-size: 20px; margin: 20px 0 10px; color: #8B4513; }
        p { margin-bottom: 15px; }
        .btn { display: inline-block; padding: 10px 20px; background: #138808; color: white; text-decoration: none; border-radius: 5px; margin: 10px 5px; }
        .download-section, .login-section { text-align: center; margin: 30px 0; }
        img { max-width: 100%; height: auto; margin: 20px 0; border-radius: 8px; }
        footer { margin-top: 50px; padding-top: 20px; border-top: 1px solid #ddd; }
        .game-types, .tags { margin: 20px 0; }
        .game-types a, .tags a { display: inline-block; background: #eee; padding: 5px 10px; margin: 3px; border-radius: 3px; text-decoration: none; color: #333; }
        @media (max-width: 768px) {
            nav ul { display: none; flex-direction: column; width: 100%; }
            nav.active ul { display: flex; }
            .mobile-menu-btn { display: block; }
            header { flex-direction: column; align-items: flex-start; }
            .logo { margin-bottom: 15px; }
        }
