/* --- Core Engine Variables --- */
:root {
    --bg-void: #0a0203;
    --royal-maroon: #800000;
    --luxurious-gold: #FFC107; /* မင်းရဲ့ မူရင်းရွှေရောင်အတိုင်း */
    --pure-white: #ffffff;
    --text-ash: #b0b0b0;
}

html, body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    width: 100%;
    overflow-x: hidden;
}
*, *:before, *:after { box-sizing: inherit; }

body.services-maintenance-body {
    background-color: var(--bg-void);
    color: var(--pure-white);
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* --- Container Frame --- */
.maintenance-container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
}

/* --- Go Back Home Button Style --- */
.maintenance-header {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.back-home-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--pure-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 10px 24px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.back-home-btn:hover {
    background: rgba(128, 0, 0, 0.2);
    border-color: var(--luxurious-gold); /* */
    color: var(--luxurious-gold); /* */
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.15);
    transform: translateY(-2px);
}

/* --- Announcement Content Box --- */
.announcement-content {
    text-align: center;
    max-width: 750px;
    margin: auto 0;
}

/* Gears Interlocking Animation */
.icon-gear-wrapper {
    position: relative;
    display: inline-block;
    width: 100px;
    height: 100px;
    margin-bottom: 25px;
}
.gear-main {
    font-size: 4.5rem;
    color: var(--royal-maroon);
    animation: spinClockwise 8s infinite linear;
}
.gear-sub {
    font-size: 2.5rem;
    color: var(--luxurious-gold); /* */
    position: absolute;
    bottom: 5px;
    right: -5px;
    animation: spinCounterClockwise 4s infinite linear;
}

@keyframes spinClockwise { 100% { transform: rotate(360deg); } }
@keyframes spinCounterClockwise { 100% { transform: rotate(-360deg); } }

.status-badge {
    background: rgba(255, 193, 7, 0.08);
    border: 1px solid rgba(255, 193, 7, 0.2);
    color: var(--luxurious-gold); /* */
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}
.pulse-dot {
    width: 7px;
    height: 7px;
    background-color: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 8px #22c55e;
    animation: pulseGlow 1.5s infinite alternate;
}
@keyframes pulseGlow { 0% { opacity: 0.4; } 100% { opacity: 1; } }

.main-title {
    font-size: 3rem;
    margin: 0 0 15px 0;
    font-weight: 800;
    line-height: 1.2;
}
.main-title span {
    color: var(--luxurious-gold); /* */
    text-shadow: 0 0 25px rgba(255, 193, 7, 0.2);
}

.sub-desc {
    color: var(--text-ash);
    line-height: 1.8;
    font-size: 1.02rem;
    margin-bottom: 40px;
    text-align: center;
}

/* --- Countdown Timers --- */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}
.countdown-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    min-width: 90px;
    padding: 15px 10px;
    border-radius: 14px;
    backdrop-filter: blur(5px);
}
.countdown-box span {
    font-size: 2rem;
    font-weight: 700;
    color: var(--luxurious-gold); /* */
    display: block;
}
.countdown-box p {
    margin: 4px 0 0 0;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-ash);
    letter-spacing: 1px;
}

/* --- Preview Tech Cards --- */
.services-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
}
.preview-card {
    background: rgba(20, 8, 10, 0.4);
    border: 1px solid rgba(128, 0, 0, 0.15);
    padding: 20px 15px;
    border-radius: 16px;
    transition: transform 0.3s;
}
.preview-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 193, 7, 0.2);
}
.preview-card i {
    font-size: 1.5rem;
    color: var(--luxurious-gold); /* */
    margin-bottom: 10px;
}
.preview-card h3 {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
}

/* --- Footer Area --- */
.maintenance-footer {
    width: 100%;
    text-align: center;
    margin-top: 30px;
}
.footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.08), transparent);
    margin-bottom: 20px;
}
.credit-text {
    font-size: 0.95rem;
    color: var(--text-ash);
    margin: 0;
    letter-spacing: 0.5px;
}
.author-name {
    color: var(--luxurious-gold); /* */
    font-weight: 600;
}

/* --- Light Blur Ambience Orbs --- */
.ambient-glow-container {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.15;
}
.orb-maroon { width: 500px; height: 500px; background-color: var(--royal-maroon); top: -10%; right: -10%; }
.orb-gold { width: 450px; height: 450px; background-color: var(--luxurious-gold); bottom: -10%; left: -10%; }

/* --- Mobile Engine Optimization --- */
@media (max-width: 650px) {
    .main-title { font-size: 2.2rem; }
    .countdown-container { gap: 10px; }
    .countdown-box { min-width: 70px; padding: 10px 5px; }
    .countdown-box span { font-size: 1.5rem; }
    .services-preview-grid { grid-template-columns: 1fr; gap: 15px; }
    .maintenance-container { padding: 30px 16px; }
}


/* --- Footer --- */
.about-footer { text-align: center; margin-top: 80px; }
.line-sep { height: 1px; background: var(--glass-border); margin-bottom: 20px; }
.gold-text { color: var(--luxurious-gold); font-weight: 600; } /* */
