/* ================================================================
# File: maintenance-mode.css
# Path: //static/css/maintenance-mode.css
# Version: 1.0.0
# Description: DACOG Maintenance Mode Stylesheet
# ================================================================*/

body {
    background: #0f172a;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    font-family: 'Inter', -apple-system, sans-serif;
}

.maintenance-card {
    max-width: 650px;
    width: 90%;
    border: 1px solid #1e293b;
    background: rgba(15, 23, 42, 0.95);
    padding: 4rem;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.dacog-logo {
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: 6px;
    font-size: 2.5rem;
}

.subtitle {
    text-transform: uppercase;
    font-size: 0.8rem;
    color: #38bdf8;
    letter-spacing: 3px;
    margin-bottom: 3rem;
    font-weight: 600;
}

.announcement-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.85;
}

/* Timer Styling */
.timer-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 3rem;
}

.timer-unit {
    background: #1e293b;
    padding: 20px;
    min-width: 100px;
    border: 1px solid #334155;
}

.timer-val {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    color: #38bdf8;
}

.timer-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.5;
}

.separator {
    border-color: #334155;
    opacity: 0.3;
    margin-bottom: 3rem;
}

/* Bypass Secret UI */
.admin-trigger {
    opacity: 0.03;
    transition: opacity 0.4s ease;
}

.admin-trigger:hover {
    opacity: 1;
}

.admin-input {
    background: transparent;
    color: white;
    border: 1px solid #334155;
    padding: 8px 15px;
    font-size: 0.85rem;
    width: 60%;
    outline: none;
}

.btn-unlock {
    background: transparent;
    color: #38bdf8;
    border: 1px solid #38bdf8;
    padding: 8px 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-unlock:hover {
    background: #38bdf8;
    color: #0f172a;
}

.ready-msg {
    color: #38bdf8;
    letter-spacing: 2px;
}