/* redirect-intermediate.css */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f9fafb;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.redirect-container {
    width: 100%;
    max-width: 780px;
    padding: 20px;
    text-align: center;
}

/* Banner */
.banner-wrap {
    margin-bottom: 32px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,.08);
}
.banner-wrap a { display: block; line-height: 0; }
.banner-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

/* Card */
.redirect-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
}

.product-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin: 0 auto 20px;
    display: block;
}

.redirect-card h2 {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.redirect-card p {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.5;
}

/* Progress bar */
.progress-track {
    width: 100%;
    height: 6px;
    background: #e5e7eb;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 20px;
}
.progress-bar {
    height: 100%;
    width: 0%;
    background: #4f46e5;
    border-radius: 3px;
}

.countdown {
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 24px;
}
.countdown span {
    font-weight: 700;
    color: #4f46e5;
}

/* CTA button */
.redirect-btn {
    display: inline-block;
    background: #4f46e5;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 10px;
    text-decoration: none;
    transition: background .2s;
}
.redirect-btn:hover { background: #4338ca; }

/* Footer note */
.footer-note {
    margin-top: 24px;
    font-size: 12px;
    color: #9ca3af;
}
.footer-note a { color: #4f46e5; text-decoration: none; }
.footer-note a:hover { text-decoration: underline; }

@media (max-width: 640px) {
    .redirect-card { padding: 28px 20px; }
    .redirect-card h2 { font-size: 18px; }
}