.poster {
    position: relative;
    width: 1080px;
    height: 1920px;
    overflow: hidden;
    background: #060817;
}
.poster-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.poster-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 7, 18, 0.12), rgba(4, 5, 10, 0.32));
    z-index: 1;
}
.poster-content {
    position: absolute;
    inset: 0;
    padding: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5;
}
.poster-logo {
    margin-top: 30px;
}
.poster-cards {
    margin-top: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
}
.poster-quote {
    margin-top: 80px;
    max-width: 760px;
    text-align: center;
    font-size: 44px;
    line-height: 1.6;
}
.poster-footer {
    position: absolute;
    bottom: 120px;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
