html, body {
    margin: 0;
    padding: 0;
    background: #000;
    overflow: hidden;
    height: 100%;
}

.vibe-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

video#vibe-player {
    width: 100%;
    height: 100%;
    object-fit: contain; /* сохраняет пропорции, полностью видно видео */
    display: block;
    transition: transform 0.3s ease; /* плавное масштабирование, если нужно */
}

#sound-toggle {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
    font-size: 28px;
    background: rgba(0,0,0,0.4);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    cursor: pointer;
}
