/* =========================
   RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =========================
   BODY
========================= */
body {
    font-family: 'Orbitron', sans-serif;
    background: radial-gradient(circle at top, #111 0%, #000 60%);
    color: #fff;
    min-height: 100vh;
    overflow: hidden;
}

/* =========================
   LAYOUT
========================= */
.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* =========================
   GLOW BOX (CENTER)
========================= */
.glow-box {
    margin: auto;
    text-align: center;
    padding: 60px 80px;

    /* 🔥 NOWE: CZARNE TŁO */
    background-color: #000000;

    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow:
        0 0 30px rgba(255, 120, 0, 0.25),
        inset 0 0 30px rgba(255, 120, 0, 0.1);
    backdrop-filter: blur(4px);
}

/* =========================
   LOGO NAD H1 (BEZ GLOW)
========================= */
.logo-top {
    max-width: 220px;
    width: 100%;
    margin: 0 auto 30px;
    display: block;
}

/* =========================
   TITLE
========================= */
h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: 0.15em;
    margin-bottom: 25px;
    color: #ff7a00;
    text-shadow:
        0 0 10px rgba(255, 122, 0, 0.7),
        0 0 30px rgba(255, 122, 0, 0.4);
}

/* =========================
   TEXT
========================= */
p {
    font-size: 1rem;
    opacity: 0.75;
    margin-bottom: 40px;
}

/* =========================
   LOADER
========================= */
.loader {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.loader span {
    width: 12px;
    height: 12px;
    background: #ff7a00;
    border-radius: 50%;
    animation: pulse 1.4s infinite ease-in-out both;
}

.loader span:nth-child(1) { animation-delay: -0.32s; }
.loader span:nth-child(2) { animation-delay: -0.16s; }

/* =========================
   ANIMATION
========================= */
@keyframes pulse {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0.3;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* =========================
   BOTTOM IMAGE (50% MNIEJSZY)
========================= */
.bottom-image {
    margin-top: auto;
    padding-bottom: 25px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.bottom-image img {
    max-width: 260px;
    width: 100%;
    display: block;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 600px) {

    .glow-box {
        padding: 40px 30px;
    }

    h1 {
        letter-spacing: 0.1em;
    }

    .logo-top {
        max-width: 160px;
        margin-bottom: 20px;
    }

    .bottom-image img {
        max-width: 200px;
    }
}
