body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { background: #FF9900; color: white; padding: 20px; text-align: center; position: relative; }
        .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: 15px; }
        nav a { color: white; text-decoration: none; font-weight: bold; }
        .mobile-menu-btn { display: none; position: absolute; top: 10px; right: 10px; }
        h1 { color: #FF4500; border-bottom: 3px solid #FF9900; padding-bottom: 10px; }
        h2 { color: #FF6600; margin-top: 30px; }
        h3 { color: #FF8C00; margin-top: 25px; }
        .download-btn, .login-btn { display: inline-block; padding: 12px 25px; background: #009900; color: white; text-decoration: none; border-radius: 5px; margin: 15px 0; }
        .login-btn { background: #0066CC; }
        img { max-width: 100%; height: auto; margin: 20px 0; border-radius: 8px; }
        footer { background: #333; color: white; padding: 20px; text-align: center; margin-top: 40px; }
        .game-types { margin: 20px 0; }
        .tags { margin: 15px 0; }
        @media (max-width: 768px) {
            .mobile-menu-btn { display: block; }
            nav { flex-direction: column; display: none; }
            nav.active { display: flex; }
            body { padding: 10px; }
        }
