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

html, body {
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    color: #f5f5f5;
    background-color: #0a0a0a;
    background-image: url("1778191388390.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 0;
    pointer-events: none;
}

.container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    padding: 2rem 1.25rem;
    text-align: center;
}

.title {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.video-wrapper {
    width: 100%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.bottom-row {
    width: 100%;
    max-width: 900px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2.5rem;
}

.poster {
    display: flex;
    justify-content: flex-start;
}

.poster img {
    max-width: 100%;
    width: 280px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.social {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.social a {
    color: #f5f5f5;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.05em;
    padding: 0.6rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 999px;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.social a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 600px) {
    .container {
        gap: 1.75rem;
    }
    .bottom-row {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        justify-items: center;
    }
    .poster {
        justify-content: center;
    }
    .social {
        align-items: center;
        gap: 0.75rem;
    }
}
