.video-card {
    background: #071029;
    padding: 12px;
    border-radius: 10px;
    color: #e6eef8;
}

    .video-card video {
        width: 100%;
        height: auto;
        border-radius: 8px;
        display: block;
        background: #000;
    }

.video-controls-below {
    margin-top: 8px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.08);
    color: inherit;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
}

.theater-mode {
    background: #000;
}
/* share dropdown + small UI */
.share-dropdown {
    position: relative;
    display: inline-block;
}

.share-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 6px);
    background: #0b1220;
    color: #e6eef8;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(2,6,23,0.6);
    min-width: 200px;
    display: none;
    z-index: 9999;
    padding: 6px;
}

    .share-menu.show {
        display: block;
    }

.share-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    cursor: pointer;
    border-radius: 6px;
    text-decoration: none;
    color: inherit;
}

    .share-item:hover {
        background: rgba(255,255,255,0.03);
    }

    .share-item .icon {
        width: 20px;
        text-align: center;
    }
