body {
    margin: 0;
    padding: 0;
    font-family: 'Courier New', 'Courier New', Courier, monospace;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 150%), url('assets/vc_bg.webp');
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 100%;
    background-color: #000;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    font-size: clamp(14px, 4vw, 20px);
}

.header-logo {
    display: block;
    margin: 0 auto 40px;
    width: 80%;
    max-width: 1000px;
    height: auto;
    padding-top: 60px;
}

.coming-soon-logo {
    display: block;
    margin: 0 auto 40px;
    width: 35%;
    min-width: 35%;
    max-width: 1000px;
    height: auto;
}

@media (max-width: 767px) {
    .coming-soon-logo {
        width: 70%;
        min-width: 70%;
    }
}

.body-text {
    color: white;
    font-weight: 600;
    max-width: 800px;
    width: calc(100% - 40px);
    margin: 0 auto;
    padding: 1.5rem;
    box-sizing: border-box;
    text-align: center;
}

.platforms-section {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    max-width: 720px;
    margin: 3rem auto;
    padding: 0 20px;
    justify-items: center;
}

.platform-item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    box-sizing: border-box;
}

.platform-item img {
    max-width: 100%;
    height: 60px;
    width: auto;
    object-fit: contain;
}

.platform-item--large img {
    height: 85px;
}

@media (min-width: 900px) {
    .platforms-section {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .platforms-section {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

footer {
    margin-top: auto;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
    color: white;
}

.footer-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.footer-logos img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.horizontal-list {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.horizontal-list li {
    margin: 0;
}
.trailer-section {
    display: flex;
    justify-content: center;
    padding: 2rem 1rem;
}

.trailer-frame {
    position: relative;
    width: min(90vw, 960px);
    aspect-ratio: 16 / 9;
}

.trailer-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}