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

body {
    font-family: "Inter", Arial, sans-serif;
    background: #0a0f1a;
    color: white;
    height: 100vh;
    overflow: hidden;
}

/* Background gradient animation */
.background-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, #0059ff33, transparent),
                radial-gradient(circle at 80% 70%, #ae00ff33, transparent);
    filter: blur(60px);
    animation: move 10s infinite alternate ease-in-out;
    z-index: 0;
}

@keyframes move {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.2); opacity: 1; }
}

/* Center container */
.container {
    position: relative;
    z-index: 2;
    max-width: 480px;
    margin: 8% auto;
    text-align: center;
    background: rgba(15, 20, 35, 0.65);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(12px);
    box-shadow: 0 0 40px #00000044;
}

/* Logo */
.logo img {
    width: 80px;
    opacity: 0.9;
    filter: drop-shadow(0 0 12px rgba(0,255,255,0.3));
    margin-bottom: 15px;
}

/* Title */
h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Progress bar */
.progress-bar {
    width: 100%;
    height: 10px;
    background: #1a2335;
    border-radius: 50px;
    margin: 20px 0;
    overflow: hidden;
}

.progress {
    height: 100%;
    width: 65%;
    background: linear-gradient(90deg, #00aaff, #00eaff);
    animation: loading 3s infinite alternate;
}

@keyframes loading {
    0% { width: 45%; }
    100% { width: 70%; }
}

.step {
    opacity: 0.7;
    margin-bottom: 20px;
}

/* Notify */
.notify-title {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1rem;
    opacity: 0.9;
}

.notify-form {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.notify-form input {
    width: 60%;
    padding: 10px 15px;
    border-radius: 8px;
    border: none;
    font-size: 0.9rem;
}

.notify-form button {
    background: #009dff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: white;
    cursor: pointer;
    transition: 0.2s;
}

.notify-form button:hover {
    background: #00c3ff;
}

/* Footer */
footer {
    font-size: 0.8rem;
    margin-top: 25px;
    opacity: 0.7;
}

footer a {
    color: #00bbff;
    text-decoration: none;
}
