:root {
    --primary-color: #ffffff;
    --secondary-color: #888888;
    --background-color: #0c0e12;
    --accent-color: #4f46e5;
    --font-family: 'Outfit', sans-serif;
}

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

body {
    background-color: var(--background-color);
    font-family: var(--font-family);
    color: var(--primary-color);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    padding: 1rem;
}

/* Background Image with Overlay */
.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../public/hero_bg.png') no-repeat center center/cover;
    filter: brightness(0.4);
    z-index: -1;
}

/* Glassmorphism Card */
.container {
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 3rem;
    border-radius: 2rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1.2s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

h1 {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #a5a5a5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.1rem;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.3rem;
    margin-bottom: 2rem;
}

.description {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Progress bar implementation */
.progress-container {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    margin-bottom: 0.8rem;
    overflow: hidden;
    position: relative;
}

.progress-bar {
    width: 0%; 
    height: 100%;
    background: linear-gradient(90deg, #4f46e5, #9333ea);
    border-radius: 2px;
    position: relative;
    animation: fullLoading 10s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite linear;
}

.status-label {
    font-size: 0.8rem;
    color: var(--secondary-color);
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    font-weight: 400;
}

@keyframes fullLoading {
    0% { width: 0%; opacity: 1; }
    90% { width: 100%; opacity: 1; }
    95% { width: 100%; opacity: 0; }
    100% { width: 0%; opacity: 0; }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@media (max-width: 480px) {
    .container {
        padding: 2.5rem 1.5rem;
        border-radius: 1.5rem;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 0.9rem;
        letter-spacing: 0.2rem;
    }
    
    .description {
        font-size: 0.95rem;
    }
}
