body {
    background: radial-gradient(circle at 30% 20%, #2a1250 0%, #140824 40%, #0b0e1a 100%);
    color: #f0f0f0;
    font-family: 'Segoe UI', sans-serif;
    overflow-x: hidden;
    position: relative;
}

/* ===== MAGIC CONTAINER (gwiazdki w tle) ===== */
.magic-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0; /* zawsze niżej niż header */
}

/* ===== FADE ANIMACJA ===== */
.fade-section > * {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-section > *.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Spadanie gwiazdek */
@keyframes fall {
    0% { top: -20px; opacity: 0; }
    10% { opacity: 1; }
    100% { top: 110vh; opacity: 0; }
}

/* ===== MAIN CONTENT ===== */
main {
    position: relative;
    z-index: 1;
}

/* ===== SEKCJA POWITALNA ===== */
.sekcja-powitalna {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 10%;
    box-sizing: border-box;
}

.sekcja-powitalna-tekst h1 {
    font-size: 72px;
    margin-bottom: 25px;
    color: #c49c29;
    font-family: Georgia, serif;
    text-shadow: 0 0 25px rgba(196,156,41,0.5);
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 10px rgba(196,156,41,0.3); }
    to { text-shadow: 0 0 35px rgba(196,156,41,0.8); }
}

.sekcja-powitalna-tekst p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    opacity: 0.9;
}

/* ===== PROMOCJA ===== */
.promocja {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding: 100px 10%;
    flex-wrap: wrap;
}

.promocja-box {
    background: rgba(75, 0, 130, 0.15);
    border: 2px solid #4b0082;
    border-radius: 40px;
    padding: 50px 70px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: 0.4s ease;
    box-shadow: 0 0 20px rgba(75,0,130,0.2);
}

.promocja-box:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 0 40px rgba(196,156,41,0.5);
}

.promocja-box h2 {
    margin-bottom: 20px;
    font-size: 26px;
}

/* ===== OBRAZ PROMOCJI ===== */
.promocja-obraz img {
    width: 180px;
    animation: float 4s ease-in-out infinite;
}

/* ===== PRZYCISKI ===== */
button {
    background-color: #c49c29;
    color: #000;
    border: none;
    padding: 15px 45px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 40px;
    cursor: none;
    transition: 0.3s ease;
    margin-top: 15px;
}

button:hover {
    background-color: #fff;
    box-shadow: 0 0 25px #c49c29;
    transform: scale(1.08);
}

/* ===== ANIMACJA POJAWIANIA ===== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSYWNOŚĆ ===== */
@media (max-width: 900px) {
    .promocja {
        flex-direction: column;
        text-align: center;
    }
}