html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    font-family: Arial, Helvetica, sans-serif;
    color: #f2f2f2;
    background: #0b0b0b;
    overflow-x: hidden;
}

body {
    background:
        linear-gradient(
            180deg,
            #3a3a3a 0%,
            #2b2b2b 18%,
            #3a1e1e 45%,
            #5a1f2e 65%,
            #3a1f4f 82%,
            #24152f 100%
        );
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        radial-gradient(rgba(0,0,0,0.08) 1px, transparent 1px);
    background-size: 3px 3px, 4px 4px;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 0;
}

.wrapper {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 20px;
    gap: 18px;
    text-align: center;
}

.logo {
    width: 154px;
    height: auto;
    display: block;
    margin-bottom: 2px;
}

@media (max-width: 480px) {
    .logo { width: 126px; }
}

/* TEKST 1 */
.text-top {
    max-width: 720px;
    font-size: 16px;
    line-height: 1.6;
    color: #e2e2e2;
    text-shadow:
        0 2px 0 rgba(0,0,0,0.7),
        0 8px 22px rgba(0,0,0,0.55);
}

/* COUNTDOWN – BEZ ZMIAN */
.countdown {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.time-box {
    width: 69px;
    height: 69px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 30% 30%, rgba(255,215,160,0.18), transparent 55%),
        linear-gradient(145deg, #24180c, #0f0b06);
    border: 1px solid rgba(212,175,55,0.35);
    animation: goldPulseBox 2.9s ease-in-out infinite;
}

.time-box span {
    font-size: 20px;
    font-weight: bold;
    color: #e2c063;
    line-height: 1;
}

.time-box small {
    margin-top: 3px;
    font-size: 9px;
    letter-spacing: 1px;
    color: #bfa96a;
}

#seconds { animation-duration: 1.45s; }

/* TEKST 2 – SAME LITERY + CIEŃ + PULS */
.text-bottom {
    max-width: 720px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.text-bottom .date {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #ececec;
    background: none;
    animation: goldPulseText 2.9s ease-in-out infinite;
}

.text-bottom .promo {
    font-size: 14px;
    letter-spacing: 0.4px;
    color: #d0d0d0;
    text-shadow:
        0 2px 0 rgba(0,0,0,0.75),
        0 10px 26px rgba(0,0,0,0.6);
}

/* OBRAZY */
.images {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 100%;
    max-width: 432px;
}

.images img {
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.65);
}

footer {
    margin-top: 18px;
    font-size: 12px;
    color: #b0b0b0;
    opacity: 0.85;
}

/* ANIMACJE */
@keyframes goldPulseBox {
    0% {
        box-shadow:
            inset 0 0 22px rgba(0,0,0,0.85),
            0 0 6px rgba(212,175,55,0.12);
    }
    50% {
        box-shadow:
            inset 0 0 30px rgba(0,0,0,0.95),
            0 0 24px rgba(212,175,55,0.36);
    }
    100% {
        box-shadow:
            inset 0 0 22px rgba(0,0,0,0.85),
            0 0 6px rgba(212,175,55,0.12);
    }
}

@keyframes goldPulseText {
    0% {
        text-shadow:
            0 2px 0 rgba(0,0,0,0.75),
            0 8px 18px rgba(0,0,0,0.55);
    }
    50% {
        text-shadow:
            0 2px 0 rgba(0,0,0,0.85),
            0 14px 34px rgba(0,0,0,0.75);
    }
    100% {
        text-shadow:
            0 2px 0 rgba(0,0,0,0.75),
            0 8px 18px rgba(0,0,0,0.55);
    }
}

footer a:hover {
    color: #e6c86a;
    text-shadow:
        0 0 6px rgba(230,200,106,0.6),
        0 0 18px rgba(230,200,106,0.45),
        0 0 32px rgba(230,200,106,0.25);
}
a:link {
	color: #80e9e8;
    text-shadow:
        0 0 6px rgba(230,200,106,0.1),
        0 0 18px rgba(230,200,106,0.1),
        0 0 32px rgba(230,200,106,0.1);
		
}
a:visited {
	color: #80e9e8;
    text-shadow:
        0 0 6px rgba(230,200,106,0.1),
        0 0 18px rgba(230,200,106,0.1),
        0 0 32px rgba(230,200,106,0.1);
		
}