/* Maintenance & Coming Soon Styles */

:root {
    --m-blue: #148fff;
    --m-dark-bg: rgba(15, 23, 42, 0.85);
    --m-light-bg: rgba(255, 255, 255, 0.85);
}

.maintenance-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    padding: 20px;
    animation: fadeIn 0.5s ease-out;
}

.maintenance-card {
    background: var(--m-light-bg);
    border-radius: 50px;
    padding: 60px 40px;
    max-width: 800px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.maintenance-card.dark {
    background: var(--m-dark-bg);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.m-header-small {
    font-family: 'Chewy', cursive;
    color: var(--m-blue);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.m-title {
    font-family: 'Chewy', cursive;
    font-size: clamp(3rem, 8vw, 5rem);
    color: var(--m-blue);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 25px;
    text-shadow: 0 0 20px rgba(20, 143, 255, 0.3);
}

.dark .m-title {
    color: #7dd3fc;
    text-shadow: 0 0 30px rgba(125, 211, 252, 0.4);
}

.m-description {
    font-family: 'Patrick Hand', cursive;
    font-size: 1.4rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.5;
}

.dark .m-description {
    color: #cbd5e1;
}

.m-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(20, 143, 255, 0.1);
    color: var(--m-blue);
    padding: 10px 25px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    border: 1.5px solid rgba(20, 143, 255, 0.2);
}

.dark .m-status-badge {
    background: rgba(125, 211, 252, 0.1);
    color: #7dd3fc;
    border-color: rgba(125, 211, 252, 0.3);
}

.m-status-dot {
    width: 10px;
    height: 10px;
    background: #3b82f6;
    border-radius: 50%;
    box-shadow: 0 0 10px #3b82f6;
    animation: m-pulse 2s infinite;
}

.m-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #94a3b8;
}

.m-back-link {
    margin-top: 30px;
    display: block;
    color: #94a3b8;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.m-back-link:hover {
    color: white;
    transform: translateX(-5px);
}

@keyframes m-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Hide content when maintenance is active */
body.maintenance-active > :not(.maintenance-overlay) {
    filter: blur(10px);
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
}
