/* Reset and variables */
:root {
    --bg-dark: #f8fafc; /* Soft white/slate background */
    --bg-card: rgba(255, 255, 255, 0.7); /* Translucent white card */
    --border-color: rgba(15, 23, 42, 0.06); /* Soft dark border */
    --border-hover: rgba(37, 99, 235, 0.25); /* Accent blue border hover */
    
    --text-main: #0f172a; /* Slate 900 (Dark text) */
    --text-muted: #475569; /* Slate 600 (Medium text) */
    --text-dark: #94a3b8; /* Slate 400 (Light text/placeholder) */
    
    --color-primary: #2563eb; /* Corporate Royal Blue */
    --color-secondary: #06b6d4; /* Vibrant Cyan */
    --color-violet: #6366f1; /* Indigo */
    
    --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-violet) 100%);
    
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-sans);
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Background Blobs (Soft, high-blur light theme elements) */
.glow-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
    animation: float 25s infinite alternate;
}

.blob-1 {
    top: -5%;
    right: 10%;
    width: 600px;
    height: 600px;
    background: var(--color-primary);
    animation-delay: 0s;
}

.blob-2 {
    bottom: -5%;
    left: 5%;
    width: 600px;
    height: 600px;
    background: var(--color-violet);
    animation-delay: 5s;
}

.blob-3 {
    top: 30%;
    left: 30%;
    width: 450px;
    height: 450px;
    background: var(--color-secondary);
    animation-delay: 10s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(50px, -70px) scale(1.08);
    }
    100% {
        transform: translate(-40px, 40px) scale(0.92);
    }
}

/* Container & Layout */
.container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    min-height: 100vh;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

/* Main Content */
.main-content {
    width: 100%;
    max-width: 760px;
    text-align: center;
    margin: auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
    animation: fadeIn 0.8s ease-out;
}

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

/* Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(37, 99, 235, 0.06);
    border: 1px solid rgba(37, 99, 235, 0.12);
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    backdrop-filter: blur(10px);
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.04);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--color-primary);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.5);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(37, 99, 235, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    }
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Typography */
.main-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-desc {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 600px;
}

/* Illustration Container */
.illustration-container {
    width: 100%;
    max-width: 480px;
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.maintenance-illustration {
    width: 100%;
    height: auto;
    border-radius: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: var(--transition-smooth);
}

.maintenance-illustration:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

/* Footer Section */
.footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 1.5rem;
}

.copyright {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.75rem;
    }
    
    .illustration-container {
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1.25rem;
    }
    
    .main-title {
        font-size: 2.25rem;
    }
    
    .main-desc {
        font-size: 1rem;
    }
    
    .illustration-container {
        max-width: 100%;
        padding: 0 0.5rem;
    }
}
