* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif;
}

body {
    background: radial-gradient(circle at top, #1e293b, #020617);
    color: #e5e7eb;
    height: 100vh;
}

.container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.content {
    max-width: 600px;
    animation: fadeIn 1.5s ease;
}

h1 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #cbd5f5;
    margin-bottom: 40px;
}

.progress-box {
    margin-bottom: 30px;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: #1e293b;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar span {
    display: block;
    width: 65%;
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #6366f1);
    animation: loading 2s ease-in-out infinite alternate;
}

small {
    display: block;
    margin-top: 10px;
    color: #94a3b8;
}

.footer-text {
    margin-top: 40px;
    font-size: 0.9rem;
    color: #64748b;
    letter-spacing: 1px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes loading {
    from {
        width: 40%;
    }
    to {
        width: 70%;
    }
}
