body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; background-color: #f5f5f5; max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { background-color: #1a3e72; color: white; padding: 15px; position: sticky; top: 0; z-index: 100; }
        .logo { font-size: 28px; font-weight: bold; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
        nav ul { list-style: none; padding: 0; display: flex; gap: 20px; }
        nav ul li { display: inline; }
        nav ul li a { color: white; text-decoration: none; }
        .mobile-nav-btn { display: none; background: none; border: none; color: white; font-size: 24px; cursor: pointer; }
        @media (max-width: 768px) {
            .mobile-nav-btn { display: block; }
            nav ul { display: none; flex-direction: column; }
            nav.active ul { display: flex; }
        }
        h1 { color: #1a3e72; border-bottom: 2px solid #f90; padding-bottom: 10px; }
        h2 { color: #f90; margin-top: 30px; }
        h3 { color: #1a3e72; margin-top: 25px; }
        .download-btn, .login-btn { display: inline-block; padding: 12px 25px; background-color: #f90; color: white; text-decoration: none; border-radius: 5px; margin: 15px 0; font-weight: bold; }
        .download-btn:hover, .login-btn:hover { background-color: #1a3e72; }
        .game-image { width: 100%; max-width: 600px; margin: 20px auto; display: block; border-radius: 8px; }
        footer { background-color: #1a3e72; color: white; padding: 20px; text-align: center; margin-top: 40px; }
        .tag-cloud { margin: 30px 0; }
        .tag-cloud a { color: #1a3e72; background-color: #f90; padding: 5px 10px; margin: 3px; border-radius: 15px; text-decoration: none; display: inline-block; }
