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

html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000000;
}

.text-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    pointer-events: none;
}

/* Stack all elements vertically, centered */
.content-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(0.6rem, 2vw, 1.2rem);
    pointer-events: none;
}

/* ── Poster placeholder ── */
.poster-wrap {
    width: clamp(160px, 28vw, 340px);
    aspect-ratio: 2 / 3;
    border: 1px solid rgba(255, 255, 255, 0.25);
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0s forwards;
    background: rgba(255,255,255,0.04);
    display: flex;
    align-items: center;
    justify-content: center;
}

.poster-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* When src is missing/broken this keeps the box visible as a placeholder */
    color: transparent;
}

/* Fallback cross-hair placeholder shown when image fails to load */
.poster-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

/* ── Shared typography base ── */
.coming-soon,
.main-text {
    font-family: "Zalando Sans Expanded", sans-serif;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.1;
    color: #ffffff;
    text-align: center;
    opacity: 0;
}

/* ── COMING SOON ── */
.coming-soon {
    font-size: clamp(0.9rem, 3vw, 1.6rem);
    letter-spacing: 0.18em;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.15s forwards;
}

/* ── MAY 16TH ── */
.main-text {
    font-size: clamp(3rem, 12vw, 8rem);
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

/* ── TICKETS button ── */
.tickets-btn {
    display: inline-block;
    font-family: "Zalando Sans Expanded", sans-serif;
    font-size: clamp(0.85rem, 2.8vw, 1.5rem);
    font-weight: 700;
    letter-spacing: 0.18em;
    line-height: 1.1;
    color: #ffffff !important;
    text-decoration: none !important;
    border: 1.5px solid #ffffff;
    padding: 0.55em 2em;
    margin-top: clamp(0.2rem, 1vw, 0.6rem);
    background: #ffffff;
    color: #000000 !important;
    pointer-events: all;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.45s forwards;
}

.tickets-btn:hover {
    background: transparent;
    color: #ffffff !important;
}

/* ── Shared entrance animation ── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}