body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { background: #FF9933; color: white; padding: 20px; text-align: center; position: relative; }
        .logo { font-size: 2.5em; font-weight: bold; text-transform: uppercase; }
        nav { display: flex; justify-content: center; gap: 20px; margin-top: 15px; }
        nav a { color: white; text-decoration: none; font-weight: bold; }
        .mobile-menu { display: none; position: absolute; top: 10px; right: 10px; }
        h1 { color: #138808; border-bottom: 3px solid #FF9933; padding-bottom: 10px; }
        h2 { color: #FF9933; margin-top: 30px; }
        h3 { color: #138808; }
        .download-btn { background: #138808; color: white; padding: 12px 25px; border-radius: 30px; text-decoration: none; font-weight: bold; display: inline-block; margin: 15px 0; }
        .login-btn { background: #FF9933; color: white; padding: 12px 25px; border-radius: 30px; text-decoration: none; font-weight: bold; display: inline-block; margin: 15px 10px; }
        .game-image { max-width: 100%; height: auto; margin: 20px 0; }
        footer { background: #333; color: white; padding: 20px; text-align: center; margin-top: 40px; }
        .tags { margin: 20px 0; }
        .tag { background: #FF9933; color: white; padding: 5px 10px; border-radius: 15px; margin: 0 5px; display: inline-block; }
        @media (max-width: 768px) {
            .mobile-menu { display: block; }
            nav { display: none; flex-direction: column; align-items: center; }
            nav.active { display: flex; }
            .logo { font-size: 2em; }
        }
