body { font-family: Arial, sans-serif; line-height: 1.6; margin: 0; padding: 0; color: #333; background-color: #f5f5f5; }
        header { background-color: #FF9933; color: white; padding: 15px 0; text-align: center; position: relative; }
        header h1 { margin: 0; font-size: 2em; }
        .logo { font-weight: bold; text-shadow: 2px 2px 4px #000000; }
        nav { display: flex; justify-content: center; gap: 20px; margin-top: 10px; }
        nav a { color: white; text-decoration: none; font-weight: bold; }
        .mobile-nav-toggle { display: none; position: absolute; top: 15px; right: 15px; background: none; border: none; color: white; font-size: 1.5em; cursor: pointer; }
        @media (max-width: 768px) {
            nav { display: none; flex-direction: column; align-items: center; }
            nav.active { display: flex; }
            .mobile-nav-toggle { display: block; }
        }
        .container { max-width: 1200px; margin: 20px auto; padding: 0 20px; }
        h1, h2, h3 { color: #FF9933; }
        h1 { font-size: 2.2em; }
        h2 { font-size: 1.8em; margin-top: 30px; }
        h3 { font-size: 1.4em; margin-top: 25px; }
        p { margin-bottom: 15px; }
        .button { display: inline-block; background-color: #FF9933; color: white; padding: 10px 20px; text-decoration: none; border-radius: 5px; margin: 10px 0; }
        .download-section, .login-section { text-align: center; margin: 30px 0; }
        img { max-width: 100%; height: auto; margin: 20px 0; }
        .tags { margin: 20px 0; }
        .tag { display: inline-block; background-color: #e0e0e0; padding: 5px 10px; margin-right: 5px; border-radius: 3px; text-decoration: none; color: #333; }
        footer { background-color: #333; color: white; text-align: center; padding: 20px 0; margin-top: 30px; }
        .game-types { margin: 20px 0; }
        .game-type { display: inline-block; margin-right: 10px; }
