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

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: #05060f;
    color: #f3f4f6;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* Background Glow Effects */
.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}

.bg-glow-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #6366f1, #3b82f6);
    top: -100px;
    left: -100px;
    animation: float-slow 15s ease-in-out infinite alternate;
}

.bg-glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #ec4899, #8b5cf6);
    bottom: -150px;
    right: -150px;
    animation: float-slow 20s ease-in-out infinite alternate-reverse;
}

/* Container */
.container {
    width: 100%;
    max-width: 540px;
    padding: 20px;
    z-index: 2;
}

/* Glassmorphic Card */
.card {
    background: rgba(13, 17, 30, 0.45);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 48px 40px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: fade-in-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #ef4444;
    border-radius: 50%;
    box-shadow: 0 0 12px #ef4444;
    animation: pulse 1.8s infinite;
}

.status-text {
    font-size: 14px;
    font-weight: 600;
    color: #fca5a5;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Icon */
.icon-container {
    margin-bottom: 28px;
    display: flex;
    justify-content: center;
}

.maintenance-icon {
    width: 64px;
    height: 64px;
    color: #6366f1;
    filter: drop-shadow(0 0 15px rgba(99, 102, 241, 0.4));
    animation: float-icon 4s ease-in-out infinite;
}

/* Typography */
.title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 30%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.description {
    font-size: 16px;
    line-height: 1.6;
    color: #9ca3af;
    font-weight: 300;
    margin-bottom: 32px;
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    margin-bottom: 32px;
}

/* Footer / Button */
.footer p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 16px;
}

.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.25);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.45);
    background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Animations */
@keyframes float-slow {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(40px, 40px) scale(1.1);
    }
}

@keyframes float-icon {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-8px) rotate(5deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

@keyframes fade-in-up {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .card {
        padding: 36px 24px;
        border-radius: 24px;
    }
    .title {
        font-size: 26px;
    }
    .description {
        font-size: 15px;
    }
}
