.elementor-25593 .elementor-element.elementor-element-54c8fdf{--display:flex;}/* Start custom CSS for html, class: .elementor-element-1dfecee *//* --- Configuración General --- */
.lemorne-tv-wrapper {
    max-width: 1200px; margin: 0 auto; padding: 60px 20px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* --- Header --- */
.tv-header {
    text-align: center; max-width: 700px; margin: 0 auto 50px auto;
    display: flex; flex-direction: column; align-items: center;
}
.tv-tag { font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; color: #999; text-transform: uppercase; margin-bottom: 10px; }
.tv-title { font-size: 3.5rem; font-weight: 800; color: #1a1a1a; margin: 0 0 10px 0; line-height: 1; text-transform: uppercase; }
.gold-text { color: #bdb700; }
.tv-desc { font-size: 1.1rem; color: #555; line-height: 1.6; margin: 0; }
.tv-divider-gradient {
    width: 300px; height: 4px;
    background: linear-gradient(90deg, rgba(189,183,0,0) 0%, rgba(189,183,0,1) 50%, rgba(189,183,0,0) 100%);
    margin: 15px 0 25px 0; border-radius: 2px;
}

/* --- SECCIÓN POPULAR (Recuperada) --- */
.popular-section {
    background-color: #1a1a1a; padding: 30px; border-radius: 16px; margin-bottom: 50px; border: 1px solid #333;
}
.section-heading {
    color: #fff; font-size: 1.5rem; font-weight: 700; margin-bottom: 25px;
    border-left: 4px solid #bdb700; padding-left: 15px;
}
.popular-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px;
}
.popular-card {
    display: flex; gap: 15px; text-decoration: none !important; align-items: center;
    background: #252525; padding: 15px; border-radius: 10px; transition: 0.3s; position: relative;
}
.rank-number {
    font-size: 2rem; font-weight: 900; color: rgba(255,255,255,0.1); position: absolute; top: 5px; right: 10px;
}
/* Miniatura en vertical para encajar con Shorts */
.pop-thumb {
    width: 60px; height: 90px; /* Vertical ratio */
    flex-shrink: 0; border-radius: 6px; overflow: hidden; position: relative;
}
.pop-thumb img { width: 100%; height: 100%; object-fit: cover; }
.mini-play {
    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); color: #fff; font-size: 0.8rem; opacity: 0; transition: 0.3s;
}
.pop-info { flex-grow: 1; }
.pop-cat { color: #bdb700; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; display: block; margin-bottom: 4px; }
.pop-title { color: #fff; font-size: 0.95rem; line-height: 1.3; margin: 0; font-weight: 600; }
.popular-card:hover { background: #333; transform: translateY(-3px); }
.popular-card:hover .mini-play { opacity: 1; }

/* --- Filtros --- */
.filter-container {
    display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 40px;
}
.filter-btn {
    border: none; outline: none; padding: 8px 18px;
    background-color: #f0f0f0; cursor: pointer; border-radius: 50px;
    font-family: inherit; font-weight: 600; font-size: 0.85rem; color: #666; transition: all 0.3s;
}
.filter-btn:hover { background-color: #e0e0e0; color: #333; }
.filter-btn.active { background-color: #bdb700; color: #fff; box-shadow: 0 4px 10px rgba(189, 183, 0, 0.3); }

/* --- GRID DE SHORTS --- */
.shorts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); 
    gap: 25px;
}

/* Lógica de filtrado */
.video-item { display: none; }
.show-video { display: block; animation: fadeIn 0.5s; } /* ¡Importante! display: block para que se vea */

@keyframes fadeIn { from {opacity: 0; transform: translateY(20px);} to {opacity: 1; transform: translateY(0);} }

/* --- Tarjeta Vertical (Short) --- */
.short-card {
    display: block; position: relative; width: 100%; aspect-ratio: 9 / 16;
    border-radius: 16px; overflow: hidden; text-decoration: none !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1); transform: translateZ(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.short-bg { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.short-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0.6) 70%, rgba(0,0,0,0.9) 100%);
    display: flex; flex-direction: column; justify-content: space-between; padding: 15px; z-index: 2;
}
.short-top { display: flex; justify-content: space-between; align-items: flex-start; }
.platform-icon { font-size: 1.2rem; color: #fff; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
.short-duration {
    font-size: 0.75rem; font-weight: 700; color: #fff; background: rgba(0,0,0,0.5); padding: 2px 6px; border-radius: 4px; backdrop-filter: blur(2px);
}
.short-bottom { transform: translateY(0); transition: transform 0.3s; }
.short-cat { font-size: 0.7rem; font-weight: 800; text-transform: uppercase; color: #bdb700; margin-bottom: 5px; display: block; letter-spacing: 1px; }
.short-title {
    font-size: 1rem; color: #fff; font-weight: 700; line-height: 1.3; margin: 0 0 10px 0;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    text-shadow: 0 2px 5px rgba(0,0,0,0.8);
}
.play-cta {
    font-size: 0.85rem; font-weight: 700; color: #bdb700; display: flex; align-items: center; gap: 5px; opacity: 0; transform: translateY(10px); transition: all 0.3s;
}

.short-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.25); }
.short-card:hover .short-bg { transform: scale(1.1); }
.short-card:hover .play-cta { opacity: 1; transform: translateY(0); }/* End custom CSS */