* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }

body, html {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    height: 100dvh; 
    width: 100vw;
    overflow: hidden;
    overscroll-behavior-y: none; 
}

/* ФИКС ЮТУБА: Увеличен до 140%, чтобы спрятать панель "Похожие видео" за границами экрана */
#player-container {
    position: fixed;
    top: -20%; 
    left: -20%;
    width: 140%;
    height: 140%; 
    z-index: 1;
    pointer-events: none;
    background-color: var(--bg-dark);
}

#player-container iframe { width: 100%; height: 100%; border: none; }

.swiper { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 5; }
.swiper-slide { position: relative; display: flex; justify-content: center; align-items: center; background: transparent; overflow: hidden; }
