* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
    font-family: Arial, sans-serif;
}

.container {
    text-align: center;
}

.loader {
    border: 16px solid #f3f3f3;
    border-top: 16px solid #3498db;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.redirect-text {
    font-size: 24px;
    color: #333;
    margin-top: 20px;
}

.redirect-text span {
    color: #3498db;
    font-weight: bold;
}

@media (max-width: 600px) {
    .redirect-text {
        font-size: 18px;
    }

    .loader {
        width: 80px;
        height: 80px;
        border-width: 12px;
    }
}