.poster {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    background-color: #111;
}

.coming-soon {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    color: #fff;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.poster-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px; /* exactly 1px gap between poster, text, and logo */
    text-align: center;
}

.poster-art {
    width: 100%;
    max-width: 900px;
    height: auto;
    display: block;
}

.logo {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
    margin-bottom: 0;
}

h3 {
    font-size: clamp(1rem, 3.5vw, 1.25rem);
    margin: 0;
    color: #fff;
    font-weight: 600;
    background: #111; /* ensure 1px gap shows as thin line when background is dark */
    padding: 6px 12px;
}

/* Ensure the 1px gap is visible on both light and dark backgrounds by setting body background */
body {
    background: #111;
    margin: 0;
}

/* smaller adjustments for very small screens */
@media (max-width: 420px) {
    .poster-art { max-width: 320px; }
    .logo { max-width: 160px; }
    h3 { font-size: 1rem; padding: 4px 8px; }
}
