* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4f46e5;
    --primary-light: #6366f1;
    --bg-color: #ffffff;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.08);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-color);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

/* Animated Background - Subtle Light Theme */
.background-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    animation: float 20s infinite ease-in-out;
}

.circle-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #818cf8, #c7d2fe);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #a5b4fc, #e0e7ff);
    bottom: -10%;
    right: -10%;
    animation-delay: 5s;
}

.circle-3 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #c7d2fe, #ddd6fe);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Content - Centered */
.content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    width: 100%;
    /*background: var(--bg-color);*/
    padding: 4rem 3rem;
    /*border-radius: 20px;*/
    /*border: 1px solid var(--border-color);*/
    /*box-shadow: var(--shadow-lg);*/
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo */
.logo-container {
    margin-bottom: 2.5rem;
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.logo {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(79, 70, 229, 0.15));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 16px rgba(79, 70, 229, 0.25));
}

/* Title */
.title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

/* Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 50px;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.status-badge:hover {
    background: #e0f2fe;
    transform: scale(1.05);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.status-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Description */
.description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 3rem;
    font-weight: 400;
}

/* Progress Bar */
.progress-container {
    margin-top: 3rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #f3f4f6;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 10px;
    animation: progressAnimation 3s ease-out forwards;
    box-shadow: 0 0 10px rgba(79, 70, 229, 0.3);
}

@keyframes progressAnimation {
    to {
        width: 65%;
    }
}

.progress-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 400;
}

/* Footer */
.footer {
    position: relative;
    z-index: 1;
    margin-top: auto;
    padding: 2rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        padding: 3rem 2rem;
    }

    .title {
        font-size: 2.5rem;
    }

    .logo {
        max-width: 140px;
    }

    .description {
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 2rem 1.5rem;
    }

    .title {
        font-size: 2rem;
    }

    .logo {
        max-width: 120px;
    }

    .description {
        font-size: 1rem;
    }
}