/* ===== CSS Variables & Reset ===== */
:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: rgba(255, 255, 255, 0.03);
    /* Card Border Color: #11FF00 */
    --bg-card-border: #11FF00;

    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.4);

    /* Updated Brand Color: #185ABC */
    --accent-primary: #185ABC;
    --accent-secondary: #4a8adb;
    --accent-tertiary: #a5c3f3;
    --accent-glow: rgba(24, 90, 188, 0.4);

    --gradient-1: linear-gradient(135deg, #185ABC 0%, #3b82f6 100%);
    --gradient-2: linear-gradient(135deg, #0ea5e9 0%, #185ABC 100%);

    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'Inter', sans-serif;

    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;

    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ===== Background Effects ===== */
.background-effects {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    animation: float 8s ease-in-out infinite;
}

.glow-1 {
    width: 600px;
    height: 600px;
    background: var(--accent-primary);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.glow-2 {
    width: 500px;
    height: 500px;
    background: #1e40af;
    /* Darker blue */
    bottom: -150px;
    left: -150px;
    animation-delay: -2s;
}

.glow-3 {
    width: 400px;
    height: 400px;
    background: #3b82f6;
    /* Lighter blue */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -4s;
    opacity: 0.2;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

.grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

/* ===== Main Container ===== */
.main-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    min-height: calc(100vh - 80px);
}

.content-wrapper {
    width: 100%;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Logo ===== */
.logo-container {
    animation: fadeInUp 0.8s ease-out;
    animation-delay: 0.1s;
    animation-fill-mode: both;
}

/* Zoomed out logo (smaller layout size) */
.logo {
    width: 220px;
    /* Increased size as requested */
    height: auto;
    filter: drop-shadow(0 0 20px var(--accent-glow));
    transition: var(--transition-medium);
}

/* ===== Glass Card ===== */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--bg-card-border);
    border-radius: var(--border-radius-lg);
    padding: 3rem 2.5rem;
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
    animation-delay: 0.2s;
    animation-fill-mode: both;
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.05);
}

/* Removed shimmer animation from card for cleaner look */

/* ===== Maintenance Icon ===== */
.maintenance-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-1);
    border-radius: var(--border-radius-md);
    animation: pulse-icon 3s ease-in-out infinite;
    /* Slower, more subtle pulse */
}

.maintenance-icon svg {
    width: 40px;
    height: 40px;
    color: white;
}

@keyframes pulse-icon {

    0%,
    100% {
        box-shadow: 0 0 0 0 var(--accent-glow);
    }

    50% {
        box-shadow: 0 0 20px 5px var(--accent-glow);
    }
}

/* ===== Typography ===== */
.title {
    font-family: var(--font-primary);
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.message {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
}

/* ===== Status Indicator ===== */
.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(24, 90, 188, 0.1);
    border: 1px solid rgba(24, 90, 188, 0.2);
    border-radius: var(--border-radius-full);
}

.pulse {
    width: 8px;
    height: 8px;
    background: #185ABC;
    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(0.8);
    }
}

.status-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--accent-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Removed Progress Bar styles */
/* Removed Social Links styles */

/* ===== Footer ===== */
.footer {
    padding: 1.5rem 2rem;
    text-align: center;
    border-top: 1px solid var(--bg-card-border);
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}


.copyright {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

/* ===== Responsive Design ===== */
@media (max-width: 640px) {
    .main-container {
        padding: 1.5rem;
    }

    .glass-card {
        padding: 2rem 1.5rem;
    }

    .logo {
        width: 180px;
    }

    .maintenance-icon {
        width: 64px;
        height: 64px;
    }

    .maintenance-icon svg {
        width: 32px;
        height: 32px;
    }

    .glow-1 {
        width: 300px;
        height: 300px;
    }

    .glow-2 {
        width: 250px;
        height: 250px;
    }

    .glow-3 {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 380px) {
    .glass-card {
        padding: 1.5rem 1rem;
    }

    .social-links {
        gap: 0.75rem;
    }

    .social-link {
        width: 40px;
        height: 40px;
    }
}

/* ===== Prefers Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}