body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        h1, h2, h3 { color: #d43f8d; margin-top: 30px; }
        h1 { font-size: 2.5em; border-bottom: 3px solid #ff9933; padding-bottom: 10px; }
        h2 { font-size: 1.8em; }
        h3 { font-size: 1.5em; }
        .logo { font-size: 2em; font-weight: bold; color: #ff9933; text-shadow: 2px 2px #d43f8d; }
        .nav { background: #ff9933; padding: 15px; position: sticky; top: 0; z-index: 100; }
        .nav-links { display: flex; justify-content: space-around; }
        .mobile-nav-btn { display: none; background: #d43f8d; color: white; padding: 10px; border: none; }
        .download-btn, .login-btn { background: #d43f8d; color: white; padding: 12px 25px; margin: 15px 0; display: inline-block; border-radius: 5px; text-decoration: none; }
        .game-img { max-width: 100%; height: auto; margin: 20px 0; }
        @media (max-width: 768px) {
            .nav-links { display: none; flex-direction: column; }
            .mobile-nav-btn { display: block; }
            .nav.active .nav-links { display: flex; }
        }
