@font-face {
    font-family: "FormaMedium";
    src: url("fonts/FormaDJRMicro-Medium-Testing.woff2") format("woff2");
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    width: 100%;
    min-height: 100%;
    background: #fff;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100svh;
    overflow-x: hidden;
    overflow-y: auto;
}

.video-page {
    width: 70vw;
    max-width: 1400px;
    text-align: center;
}

.video-title {
    font-family: "FormaMedium", sans-serif;
    font-size: 32px;
    letter-spacing: -0.06em;
    line-height: 0.9;
    margin: 0 0 22px;
    color: #000;
}

.video-page video {
    display: block;
    width: 100%;
    height: auto;
    max-height: 72vh;
    object-fit: contain;
    background: #fff;
}

.back-link {
    position: fixed;
    top: 22px;
    left: 24px;
    font-family: "FormaMedium", sans-serif;
    font-size: 28px;
    letter-spacing: -0.06em;
    color: #000;
    text-decoration: none;
    z-index: 10;
}

.back-link:hover {
    opacity: 0.6;
}

@media (max-width: 700px) {
    .video-page {
        width: 92vw;
    }

    .video-title {
        font-size: 28px;
        margin-bottom: 18px;
    }

    .video-page video {
        max-height: 70svh;
    }

    .back-link {
        font-size: 24px;
    }
}