/* --- Контейнер видео --- */
#vibe-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000;
}

/* --- Видео --- */
#vibe-player {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* --- Overlay внизу --- */
#vibe-overlay {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    box-sizing: border-box;
    z-index: 2;
    border-radius: 8px 8px 0 0;
}

/* --- Аватарка --- */
#vibe-avatar-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

#vibe-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
    flex-shrink: 0;
}

/* --- Текст description --- */
#vibe-text {
    flex: 1;
    color: #fff;
    font-size: 14px;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0 10px;
    text-align: center;
}

/* --- Кнопка звука --- */
#sound-toggle {
    font-size: 20px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(0,0,0,0.6);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s;
}

#sound-toggle:hover {
    background: rgba(0,0,0,0.8);
}

/* --- Адаптив для мобильных --- */
@media (max-width: 768px) {
    #vibe-overlay {
        flex-direction: row;
        justify-content: space-between;
    }
    #vibe-text {
        text-align: center;
        margin: 0 10px;
        flex: 1;
    }
    #sound-toggle {
        order: 2;
    }
    #vibe-avatar-link {
        order: 1;
    }
}
