﻿/* Стандартные стили для ПК */
body {
    margin: 0;
    overflow: hidden;
    background-color: #000;
}

#bg-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03); /* Тот самый фикс белой полоски */
}

#cassette-btn {
    position: absolute;
    z-index: 10;
    cursor: pointer;
    /* Настрой эти цифры под кассету */
    top: 68%;
    left: 23%;
    width: 23%;
    height: 10%;
    /*background-color: rgba(255, 0, 0, 0.5);*/
}

/* СКРЫВАЕМ ВСЁ НА ТЕЛЕФОНАХ (ширина меньше 1024px) */
@media (max-width: 1023px) {
    #bg-video, #cassette-btn {
        display: none !important;
    }

    body::after {
        content: "Используйте ПК для просмотра";
        color: #444;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        font-family: monospace;
    }
}
