:root {
    --bg: #0b0f1a;
    --accent: #6cf2ff;
}

* {
    box-sizing: border-box;
    font-family: system-ui, sans-serif;
}

body {
    margin: 0;
    height: 100vh;
    background: radial-gradient(circle at top, #141a2e, var(--bg));
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
    max-width: 480px;
    padding: 20px;
}

.glitch {
    font-size: 7rem;
    font-weight: 800;
    color: var(--accent);
    text-shadow: 0 0 20px rgba(108, 242, 255, 0.7);
}

.subtitle {
    letter-spacing: 3px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.desc {
    color: #c7d2ff;
    margin: 10px 0;
}

.progress-wrapper {
    width: 100%;
    height: 6px;
    background: #1a2240;
    border-radius: 10px;
    overflow: hidden;
    margin: 20px 0;
}

#progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent), #00ff9c);
}

#redirect-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 28px;
    border-radius: 30px;
    border: 1px solid var(--accent);
    color: var(--accent);
    text-decoration: none;
}

#redirect-btn:hover {
    background: var(--accent);
    color: #000;
}

.changed-date {
    margin: 8px 0 18px;
    color: #9aa4ff;
    font-size: 0.95rem;
}