/* =====================================================
   ESTILOS PROFESIONALES PARA VIDEOS EN EL FEED
   ===================================================== */

.feed-item__video-container {
    position: relative;
    width: 100%;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.feed-item__video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: #000;
}

.feed-item__video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    pointer-events: none;
    z-index: 1;
}

.feed-item__video-overlay i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.feed-item__video-container video[poster] {
    background-size: cover;
    background-position: center;
}

/* Modo oscuro */
.dark-mode .feed-item__video-container {
    background: #1a1a1a;
}

.dark-mode .feed-item__video-overlay {
    background: rgba(0, 0, 0, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .feed-item__video-container {
        border-radius: 8px;
    }
    
    .feed-item__video-overlay i {
        font-size: 3rem;
    }
}

/* Profile feed video wrapper */
.profile-feed-video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

.profile-feed-video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

.dark-mode .profile-feed-video-wrapper {
    background: #1a1a1a;
}

