.renew-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 2rem;
    position: relative;
    z-index: 1;
}

.renew-container {
    width: 100%;
    max-width: 600px;
}

.renew-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
}

.renew-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent), var(--pink));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    animation: pulse 2s ease infinite;
}

.renew-card h1 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.renew-desc {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.timer-section {
    margin-bottom: 2rem;
}

.timer-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timer {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.timer-block {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    min-width: 70px;
}

.timer-num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    font-variant-numeric: tabular-nums;
}

.timer-text {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timer-sep {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-muted);
}

.renew-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.status-dot.green { background: var(--green); animation: blink 2s ease infinite; }
.status-dot.red { background: var(--red); animation: blink 1s ease infinite; }
.status-dot.orange { background: var(--orange); animation: blink 1.5s ease infinite; }

.renew-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.renew-info {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: left;
}

.renew-info h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--accent);
}

.renew-info ol {
    padding-left: 1.2rem;
    color: var(--text-secondary);
    line-height: 2;
}

.renew-alert {
    background: rgba(255, 68, 68, 0.15);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--red);
    font-weight: 500;
    animation: fadeInUp 0.5s ease;
}

.renew-alert i { font-size: 1.3rem; }
