.redirect-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f5f5f5;
    padding: 20px;
}

.redirect-box {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 600px;
    width: 100%;
}

.redirect-box h1 {
    margin: 0 0 1.5rem;
    color: #333;
    font-size: 2rem;
    line-height: 1.2;
}

.redirect-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.redirect-button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

.review-button {
    background-color: #4CAF50;
    color: white !important;
}

.review-button:hover {
    background-color: #45a049;
}

.offer-button {
    background-color: #2196F3;
    color: white !important;
}

.offer-button:hover {
    background-color: #1e87db;
}

.redirect-timer {
    font-size: 1rem;
    color: #666;
    margin-top: 1.5rem;
}