body { font-family: 'Arial', sans-serif; line-height: 1.6; margin: 0; padding: 0; color: #333; background-color: #fff9e6; }
        .container { max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { background-color: #ff6600; color: white; padding: 15px; text-align: center; position: relative; }
        .logo { font-size: 28px; font-weight: bold; text-transform: uppercase; }
        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; }
        h1 { color: #ff6600; margin-top: 30px; }
        h2 { color: #cc5200; margin-top: 25px; }
        h3 { color: #993d00; margin-top: 20px; }
        .btn { display: inline-block; background-color: #ff6600; 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; }
        footer { background-color: #333; color: white; text-align: center; padding: 20px; margin-top: 30px; }
        .game-types, .tags { margin: 20px 0; }
        @media (max-width: 768px) {
            nav { display: none; flex-direction: column; align-items: center; }
            nav.active { display: flex; }
            .mobile-nav-toggle { display: block; background: none; border: none; color: white; font-size: 24px; cursor: pointer; }
            .container { padding: 10px; }
        }
