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

/* BODY */
body {
    font-family: "Segoe UI", sans-serif;
    height: 100vh;
    background: #0b0f14;
    overflow: hidden;
    color: #fff;
}

/* SVG GRID */
.bg-svg {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* MOVING LINES */
.lines span {
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(transparent, #00c6ff, transparent);
    animation: move 6s linear infinite;
    opacity: 0.3;
}

.lines span:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
}
.lines span:nth-child(2) {
    left: 50%;
    animation-delay: 2s;
}
.lines span:nth-child(3) {
    left: 80%;
    animation-delay: 4s;
}

@keyframes move {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

/* CONTAINER */
.container {
    position: relative;
    z-index: 2;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* CARD */
.card {
    width: 420px;
    padding: 50px 40px;
    border-radius: 20px;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

/* TITLE */
.card h1 {
    font-size: 28px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

/* SUBTITLE */
.card h2 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #00c6ff;
}

/* TEXT */
.card p {
    font-size: 14px;
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* PROGRESS BAR */
.progress {
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.bar {
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    animation: progressAnim 2s ease-in-out infinite alternate;
}

@keyframes progressAnim {
    from { width: 40%; }
    to { width: 80%; }
}

/* STATUS */
.status {
    font-size: 12px;
    color: #888;
    margin-bottom: 20px;
}

/* FOOTER */
footer {
    font-size: 11px;
    color: #666;
}
