@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
    /* Lighter, cleaner background */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    color: #1e293b;
}

.container {
    width: 90%;
    /* Mobile default */
    margin: 0 auto;
}

/* Desktop Width */
@media (min-width: 768px) {
    .container {
        width: 70%;
    }
}

.redirect-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    text-align: center;
    padding: 40px;
    border: 1px solid #e2e8f0;
    position: relative;
}

/* Add a colored accent line at the top instead of full block header */
.redirect-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #3b82f6, #2563eb);
}

.header-banner {
    background-color: transparent;
    /* Removed red background */
    color: #0f172a;
    padding: 0;
    margin-bottom: 32px;
}

.header-banner h1 {
    margin: 0;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #1e3a8a;
    /* Deep blue for trust */
}

.card-content {
    padding: 0;
}

.update-badge {
    display: inline-flex;
    align-items: center;
    background-color: #eff6ff;
    color: #1d4ed8;
    padding: 8px 16px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 28px;
    border: 1px solid #dbeafe;
}

p {
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 16px;
    color: #475569;
}

.domain-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 24px 0;
    font-size: 18px;
}

.domain-old {
    text-decoration: none;
    /* Removed strikethrough */
    background-color: #f1f5f9;
    color: #64748b;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    border: 1px dashed #cbd5e1;
}

.arrow-icon {
    color: #94a3b8;
    font-size: 20px;
}

.domain-new {
    background-color: #dbeafe;
    /* Highlight color */
    color: #1e40af;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid #bfdbfe;
    transition: all 0.2s;
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.1);
}

.domain-new:hover {
    background-color: #2563eb;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.2);
}

.countdown-box {
    margin-top: 40px;
    padding: 2px;
    /* Border gradient trick space */
    background: linear-gradient(to right, #e2e8f0, #f1f5f9);
    border-radius: 16px;
    display: inline-block;
}

.countdown-inner {
    background: white;
    padding: 20px 40px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-val {
    font-size: 36px;
    font-weight: 800;
    color: #2563eb;
    font-variant-numeric: tabular-nums;
    line-height: 1;
    margin-top: 8px;
}

.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid #e5e7eb;
    border-top: 3px solid #2563eb;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-bottom: 8px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}