/* DESIGN: MAINTENANCE MODE (Fluid Neon Motion) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&family=Orbitron:wght@700&display=swap');

:root {
    --neon-cyan: #00E5FF;
    --neon-purple: #9d00ff;
    --neon-pink: #ff0055;
    --dark-bg: #050505;
    --text-white: #ffffff;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-white);
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

/* --- HINTERGRUND ANIMATION SYSTEM --- */

/* Hintergrund-Ebene 1: Lila Bewegung */
body::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--neon-purple), transparent 60%);
    opacity: 0.4;
    animation: move-1 15s infinite ease-in-out alternate;
    z-index: -2;
}

/* Hintergrund-Ebene 2: Cyan Bewegung (Gegenläufig) */
body::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--neon-cyan), transparent 60%);
    opacity: 0.4;
    animation: move-2 20s infinite ease-in-out alternate;
    z-index: -2;
}

/* Hintergrund-Ebene 3: Pinker Akzent (Pulsierend) */
.maintenance-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, var(--neon-pink), transparent 70%);
    opacity: 0.2;
    z-index: -1;
    animation: pulse-glow 8s infinite ease-in-out;
}

/* --- HAUPT CONTAINER --- */
.maintenance-container {
    text-align: center;
    position: relative;
    z-index: 10;
    
    /* Glassmorphismus (Milchglas) */
    background: rgba(20, 20, 30, 0.4); /* Etwas dunkler für besseren Kontrast */
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    
    padding: 60px 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    
    max-width: 700px;
    width: 90%;
    overflow: hidden; /* Damit der Pinke Schein nicht rausläuft */
}

/* Status Lampe */
.status-light {
    width: 12px; height: 12px;
    background: #ff4444;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    box-shadow: 0 0 20px #ff4444;
    animation: blink 2s infinite;
}

h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem;
    margin: 0;
    letter-spacing: 3px;
    text-transform: uppercase;
    /* Text Gradient Effekt */
    background: linear-gradient(90deg, #fff, var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(0, 229, 255, 0.3);
}

.alert-box {
    color: var(--neon-pink);
    border-bottom: 1px solid rgba(255, 0, 85, 0.3);
    display: inline-block;
    padding-bottom: 5px;
    font-size: 0.9rem;
    margin-bottom: 30px;
    margin-top: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* COUNTDOWN STYLE */
.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin: 40px 0;
}

.time-box {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    padding: 20px 5px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.3s;
}

.time-box:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.time-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    color: #fff;
    font-weight: bold;
    display: block;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.time-label {
    font-size: 0.7rem;
    color: var(--neon-cyan);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
    display: block;
    font-weight: bold;
}

.admin-login-link {
    display: inline-block;
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 1px;
    transition: 0.3s;
}
.admin-login-link:hover {
    color: #fff;
    text-shadow: 0 0 10px #fff;
}

/* --- ANIMATIONEN --- */

/* Bewegung für Lila (dreht sich und schiebt sich) */
@keyframes move-1 {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(100px, 50px) rotate(20deg); }
}

/* Bewegung für Cyan (andere Richtung) */
@keyframes move-2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-100px, -50px) scale(1.1); }
}

/* Pulsieren für Pink */
@keyframes pulse-glow {
    0%, 100% { opacity: 0.1; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.3; transform: translate(-50%, -50%) scale(1.2); }
}

@keyframes blink {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; box-shadow: 0 0 25px #ff4444; }
}

/* Mobile */
@media (max-width: 600px) {
    .countdown-grid { grid-template-columns: repeat(2, 1fr); }
    h1 { font-size: 2rem; }
}