body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; margin: 0; padding: 0; background-color: #f5f9ff; }
        header { background-color: #0066cc; color: white; padding: 15px 0; text-align: center; position: relative; }
        .logo { font-size: 28px; font-weight: bold; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
        nav { display: flex; justify-content: center; gap: 20px; margin-top: 10px; }
        nav a { color: white; text-decoration: none; font-weight: bold; }
        .mobile-menu-btn { display: none; position: absolute; right: 20px; top: 20px; background: white; color: #0066cc; border: none; padding: 8px 12px; border-radius: 5px; }
        .container { max-width: 1200px; margin: 20px auto; padding: 0 20px; }
        h1 { color: #0066cc; margin-bottom: 20px; }
        h2 { color: #0052a3; margin-top: 30px; }
        h3 { color: #003d7a; margin-top: 25px; }
        .btn { display: inline-block; padding: 10px 20px; background-color: #ff9900; color: white; text-decoration: none; border-radius: 5px; margin: 10px 5px; font-weight: bold; }
        .download-btn { background-color: #28a745; }
        .login-btn { background-color: #007bff; }
        .game-image { max-width: 100%; height: auto; margin: 20px 0; border-radius: 10px; }
        footer { background-color: #0066cc; color: white; text-align: center; padding: 20px 0; margin-top: 30px; }
        .tags { margin: 20px 0; }
        .tag { display: inline-block; background-color: #e0e0e0; color: #333; padding: 5px 10px; border-radius: 20px; margin: 5px; text-decoration: none; }
        @media (max-width: 768px) {
            nav { flex-direction: column; align-items: center; display: none; }
            nav.active { display: flex; }
            .mobile-menu-btn { display: block; }
            .game-image { margin: 15px 0; }
        }
