/* Reset default margins and paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styling */
body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(120deg, #74b9ff, #81ecec, #a29bfe);
    background-size: 300% 300%;
    animation: gradientAnimation 8s ease infinite;
    color: #fff;
    text-align: center;
    padding: 40px;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Container styling */
.container {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 40px 30px;
    max-width: 600px;
    text-align: center;
}

/* Header styling */
header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 20px;
}

/* Main message styling */
.message {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #2d3436;
    margin-bottom: 30px;
}

.message .thanks {
    margin-top: 15px;
    font-style: italic;
    color: #636e72;
}

/* Redirect button styling */
.redirect-button {
    display: inline-block;
    padding: 15px 25px;
    background: linear-gradient(90deg, #0984e3, #6c5ce7);
    color: #fff;
    margin: 2rem 0;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.redirect-button:hover {
    background: linear-gradient(90deg, #6c5ce7, #0984e3);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Footer styling */
footer {
    margin-top: 20px;
    font-size: 1rem;
    color: #636e72;
}

footer strong {
    color: #d63031;
    font-weight: bold;
}

/* Gradient animation */
@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    .message {
        font-size: 1rem;
    }

    .redirect-button {
        padding: 12px 20px;
        font-size: 1rem;
    }
}
