tyle> .wa-redirect-wrapper { color: #fff; font-family: "Segoe UI", sans-serif; height: 100vh; margin: 0; padding: 0; overflow: hidden; display: flex; justify-content: center; align-items: center; flex-direction: column; text-align: center; } .wa-redirect-message { font-size: 1.5em; margin-bottom: 20px; animation: fadeInUp 0.8s ease-in-out; } .wa-countdown { font-size: 1.2em; margin-bottom: 20px; animation: fadeInUp 1.2s ease-in-out; } .wa-spinner { width: 60px; height: 60px; border: 6px solid rgba(255, 255, 255, 0.3); border-top: 6px solid #fff; border-radius: 50%; animation: spin 1s linear infinite; } .wa-note { font-size: 0.9em; opacity: 0.85; margin-top: 25px; animation: fadeInUp 1.5s ease-in-out; } .wa-note a { color: #fff; text-decoration: underline; } @keyframes spin { to { transform: rotate(360deg); } } @keyframes fadeInUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }