/* =========================
   GLOBAL
========================= */
body.maintenance {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #0D0D0D, #1a1a2e, #0f3460);
    color: #ffffff;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* =========================
   TOPBAR
========================= */
.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    font-size: 13px;
    background: rgba(0,0,0,0.85);
    color: #d0d0d0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
}

/* =========================
   MAIN CONTAINER
========================= */
.maintenance-container {
    flex: 1;
    text-align: center;
    max-width: 760px;
    width: 100%;
    margin: auto;
    padding: 40px 24px;
}

/* =========================
   LOGO AREA
========================= */
.logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.logo-side {
    width: 72px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.45));
}

.logo-center {
    text-align: center;
}

.logo-text {
    font-size: 42px;
    font-weight: 900;
    letter-spacing: 2px;
    line-height: 1;
}

.logo-text span {
    color: #C0392B;
}

.logo-sub {
    font-size: 12px;
    color: #cccccc;
    letter-spacing: 1px;
    margin-top: 6px;
}

/* =========================
   TEXT CONTENT
========================= */
h1 {
    margin: 14px 0 14px;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 1px;
}

p {
    color: #c7c7c7;
    line-height: 1.7;
    font-size: 15px;
}

.small {
    font-size: 13px;
    color: #9e9e9e;
}

/* =========================
   TICKER
========================= */
.ticker {
    background: #C0392B;
    overflow: hidden;
    margin: 32px 0 26px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(192,57,43,0.25);
}

.ticker-text {
    display: flex;
    gap: 50px;
    white-space: nowrap;
    animation: ticker 18s linear infinite;
}

.ticker-text span {
    padding: 12px 0;
    font-size: 14px;
    font-weight: 500;
}

@keyframes ticker {
    from { transform: translateX(100%); }
    to   { transform: translateX(-100%); }
}

/* =========================
   PROGRESS BAR
========================= */
.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255,255,255,0.12);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 16px;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, #C0392B, #ff5e57);
    border-radius: 999px;
    animation: load 3s infinite;
}

@keyframes load {
    0%   { width: 0%; }
    50%  { width: 82%; }
    100% { width: 0%; }
}

/* =========================
   SOCIAL SECTION
========================= */
.social-section {
    margin-top: 30px;
    text-align: center;
    width: 100%;
}

.social-section .small {
    margin-bottom: 14px;
    color: #d0d0d0;
    display: block;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    width: 100%;
    margin: 0 auto;
}

.social-links a {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);

    color: #ffffff;
    font-size: 20px;
    text-decoration: none;

    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.social-links a:hover {
    background: #C0392B;
    border-color: #C0392B;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(192,57,43,0.35);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .topbar {
        flex-direction: column;
        gap: 6px;
        text-align: center;
        font-size: 12px;
    }

    .logo-wrap {
        gap: 14px;
    }

    .logo-side {
        width: 56px;
    }

    .logo-text {
        font-size: 32px;
    }

    h1 {
        font-size: 24px;
    }

    .ticker-text span {
        font-size: 13px;
    }

    .social-links a {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }
}