@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    background-color: #0c0a12;
    font-family: 'Orbitron', sans-serif;
    color: #eee;
    overflow-x: hidden;
}

main {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.maintenance {
    max-width: 460px;
    background: rgba(30, 30, 30, 0.85); /* szürkésebb, kevésbé lilás */
    padding: 45px 40px;
    border-radius: 16px;
    box-shadow: 0 0 30px 8px rgba(60, 60, 60, 0.7); /* szürke árnyék a lilás helyett */
    position: relative;
    overflow-wrap: break-word;
}

.maintenance h1 {
    font-weight: 700;
    font-size: 3.6rem;
    color: #ccc; /* világosszürke a pink helyett */
    margin-bottom: 20px;
    text-shadow:
        0 0 4px #999,
        0 0 10px #777,
        0 0 14px #444;
    transition: text-shadow 0.3s ease;
    cursor: default;
}

/* Hover effekt a főcímszövegre */
.maintenance h1:hover {
    text-shadow:
        0 0 6px #bbb,
        0 0 18px #999,
        0 0 30px #666;
}

.maintenance p {
    font-weight: 400;
    font-size: 1.3rem;
    color: #bbb;
    line-height: 1.5;
    margin-bottom: 28px;
}

/* Háttér animáció */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
    background:
        radial-gradient(circle at 20% 30%, rgba(50, 50, 50, 0.1), transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(50, 50, 50, 0.1), transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(80, 80, 80, 0.15), transparent 50%);
    animation: pulseNeon 6s ease-in-out infinite alternate;
    filter: blur(15px);
    mix-blend-mode: screen;
}

@keyframes pulseNeon {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

/* Reszponzív design */

@media (max-width: 600px) {
    .maintenance {
        max-width: 90vw;
        padding: 35px 25px;
        box-shadow: 0 0 25px 6px rgba(60, 60, 60, 0.6);
    }

    .maintenance h1 {
        font-size: 2.8rem;
    }

    .maintenance p {
        font-size: 1.1rem;
        margin-bottom: 24px;
    }
}

@media (max-width: 375px) {
    .maintenance h1 {
        font-size: 2.2rem;
    }

    .maintenance p {
        font-size: 1rem;
    }
}
