* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    background: linear-gradient(135deg, #D0A48F 0%, #E8C5A0 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.redirect-container {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    padding: 3rem 2rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
}

.content h1 {
    color: #D0A48F;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.contact-info {
    color: #6b7280;
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.progress-container {
    margin-top: 2rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background-color: #f3f4f6;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #D0A48F, #E8C5A0);
    width: 0%;
    transition: width 0.1s ease-out;
    border-radius: 4px;
}

.countdown {
    color: #4b5563;
    font-size: 1rem;
    font-weight: 500;
}

/* Mobile responsiveness */
@media (max-width: 480px) {
    .redirect-container {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .content h1 {
        font-size: 1.5rem;
    }
    
    .contact-info {
        font-size: 0.9rem;
    }
}