html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    font-family: 'Anton', sans-serif;
    background: #000;
    color: #fff;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.back-button {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.2);
}

.content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.header-image {
    width: 100%;
    height: auto;
    margin: 10px 0;
}

.video-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

video {
    height: 100%;
    max-width: 48%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .video-container {
        padding: 0 1rem;
        gap: 0.5rem;
    }

    video {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
}
