body {
    margin: 0;
    padding: 0;
    background: #000;
    font-family: Arial, sans-serif;
    color: #fff;
    height: 100vh;
    display: flex;
    justify-content: center;  /* centrowanie pionowe całego wrappera */
    align-items: center;      /* centrowanie poziome */
    text-align: center;
}

.wrapper {
    width: 100%;
    max-width: 1080px;
    padding: 0 25px; /* globalny padding */
    box-sizing: border-box;
}

.header h1 {
    color: #ff4545;
    font-size: 48px;
    margin: 0;
    letter-spacing: 2px;
}

.header h1 span {
    font-size: 0.5em;
    vertical-align: super;
    margin-left: -6px;
}

.subtitle {
    color: #ff4545;
    font-size: 14px;
    margin-top: 4px;
}

.center-image {
    width: 100%;
    max-width: 1080px;
    height: auto;
    margin: 40px auto 30px auto;
    display: block;
}

.actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.action-btn {
    display: inline-block;
    background: #ff4545;
    color: #fff;
    padding: 14px 28px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: opacity 0.2s ease, background-color 0.2s ease, color 0.2s ease;
    border: none;
    cursor: pointer;
}

.action-btn:hover {
    opacity: 0.85;
}

.action-btn--outline {
    background: transparent;
    color: #ff4545;
    border: 2px solid #ff4545;
    padding: 12px 26px;
}

.action-btn--outline:hover {
    background: rgba(255, 69, 69, 0.1);
    opacity: 1;
}

/* Responsywność — mniejsze nagłówki na telefonach */
@media (max-width: 480px) {
    .header h1 {
        font-size: 38px;
    }
}


/* ───────────────────────────────────────── */
/*  ŻÓŁTY PAS Z PŁYNĄCYM TEKSTEM "COMING SOON" */
/* ───────────────────────────────────────── */

.coming-soon-bar {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 40px; /* tu ustawiasz 23–55px */
    background: #ffd600; /* intensywnie żółty */
    transform: translateY(-50%);
    overflow: hidden;
    display: flex;
    align-items: center;
    z-index: 999;
    rotate: -3deg;
}

.scroll-text {
    display: flex;
    width: max-content;
    font-size: 12px;
    font-weight: bold;
    color: #000;
    animation: scroll-left 44s linear infinite;
    letter-spacing: 0.3em;
}

.scroll-text span {
    display: inline-block;
    white-space: nowrap;
    padding-right: 32px;
}


/* animacja przewijania */
@keyframes scroll-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
