:root {
    --bg-color: #0b0f19;
    --card-bg: rgba(20, 26, 44, 0.65);
    --card-border: rgba(255, 255, 255, 0.08);
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --accent-start: #6366f1;
    --accent-end: #a855f7;
    --font-family: 'Plus Jakarta Sans', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-family);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
}

/* Brilhos decorativos no fundo */
.background-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.text-glow-1 {
    top: 10%;
    left: 15%;
    background: var(--accent-start);
}

.text-glow-2 {
    bottom: 10%;
    right: 15%;
    background: var(--accent-end);
}

.redirect-container {
    width: 100%;
    max-width: 620px;
    padding: 24px;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.brand-icon {
    width: 32px;
    height: 32px;
    color: #6366f1;
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.content-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 40px;
    width: 100%;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: #a5b4fc;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

h1 {
    font-size: 2.25rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.description {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 32px;
}

.improvements-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: left;
    margin-bottom: 40px;
}

.improvement-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.item-icon {
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
    border-radius: 12px;
    line-height: 1;
}

.improvement-item h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.improvement-item p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.4;
}

/* Área do Contador */
.countdown-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 24px;
}

.countdown-circle {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
}

.progress-ring {
    transform: rotate(-90deg);
}

.progress-ring__bar {
    stroke-dasharray: 326.72;
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 1s linear;
}

.countdown-number {
    position: absolute;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
}

.redirect-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.manual-link {
    color: #a5b4fc;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.manual-link:hover {
    color: #c7d2fe;
    text-decoration: underline;
}

footer {
    margin-top: 32px;
    color: rgba(148, 163, 184, 0.4);
    font-size: 0.8rem;
}

@media (min-width: 480px) {
    .improvements-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .improvement-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}