/* --- GLOBAL --- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #0b0b12;
    color: #fff;
}

/* --- BUTTON (shared) --- */
.btn {
    padding: 10px 20px;
    border: none;
    margin-top: 15px;
    cursor: pointer;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.primary {
    background: #ff4ecd;
    color: white;
}

.primary:hover {
    box-shadow: 0 0 15px #ff4ecd;
}

/* ========================= */
/* MAINTENANCE PAGE */
/* ========================= */

.maintenance-container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at center, #151525, #0b0b12);
}

.maintenance-box {
    background: rgba(10,10,20,0.95);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 500px;
    border: 1px solid rgba(255,78,205,0.4);
    box-shadow: 0 0 25px rgba(255,78,205,0.25);
}

/* 🔥 FIX: biztos szöveg láthatóság */
.maintenance-box h1 {
    color: #ff4ecd;
    margin-bottom: 15px;
}

.maintenance-box p,
.maintenance-box span {
    color: #ffffff;
    opacity: 1;
}

/* STATUS */
.status {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.dot {
    width: 10px;
    height: 10px;
    background: red;
    border-radius: 50%;
    box-shadow: 0 0 10px red;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}