/* 1. Menha Video Hub - Static Luxury Style */
.menha-video-hub-container { padding: 20px 0; }

/* Video lớn chính */
.menha-video-main { width: 100%; margin-bottom: 25px; }
.menha-video-main-inner { 
    position: relative; 
    padding-bottom: 56.25%; 
    height: 0; 
    border-radius: 25px; 
    overflow: hidden; 
    box-shadow: 0 30px 70px rgba(0,0,0,0.6); 
    border: 3px solid rgba(233, 178, 17, 0.2); 
    background: #000;
}
.menha-video-main-inner iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* Dàn video nhỏ phía dưới (Grid 3 cột) */
.menha-video-grid { display: flex; gap: 20px; justify-content: center; }
.menha-video-thumb { 
    flex: 1; 
    cursor: pointer; 
    transition: all 0.4s ease; 
    opacity: 0.6; 
    border-radius: 15px; 
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.1);
    position: relative;
}
.menha-video-thumb:hover, .menha-video-thumb.is-active { 
    opacity: 1; 
    border-color: #E9B211; 
    transform: translateY(-8px); 
    box-shadow: 0 15px 30px rgba(233,178,17,0.2);
}
.menha-thumb-inner { position: relative; padding-bottom: 56.25%; height: 0; }
.menha-thumb-inner img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }

/* Icon Play mờ trên ảnh nhỏ */
.menha-video-thumb::after {
    content: '\f04b'; 
    font-family: "fl-icons"; 
    position: absolute; 
    top: 50%; left: 50%; 
    transform: translate(-50%, -50%); 
    color: #fff; font-size: 18px; opacity: 0.5;
}

/* Luxury YouTube Button CTA */
.menha-youtube-btn-wrap {
    margin-top: 50px;
    text-align: center;
}

.menha-youtube-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 50px;
    background: linear-gradient(135deg, #FF0000 0%, #B20000 100%);
    color: #fff !important;
    border-radius: 100px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 15px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 35px rgba(255, 0, 0, 0.3);
    text-decoration: none !important;
    border: none;
    position: relative;
    overflow: hidden;
}

.menha-youtube-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: 0.5s;
}

.menha-youtube-btn:hover::before {
    left: 100%;
}

.menha-youtube-btn:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 20px 50px rgba(255, 0, 0, 0.5);
    background: linear-gradient(135deg, #FF0000 20%, #E60000 100%);
}

/* Font Awesome Icon Fix */
.menha-youtube-btn i {
    font-size: 16px; /* Font Awesome cần to hơn 1 chút */
    background: rgba(255, 255, 255, 0.2);
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    flex-shrink: 0;
}

.menha-youtube-btn:hover i {
    transform: scale(1.15) rotate(10deg);
    background: #fff;
    color: #FF0000;
}

@media (max-width: 767px) { 
    .menha-video-grid { flex-wrap: wrap; }
    .menha-video-thumb { flex: 0 0 46%; } 
    .menha-youtube-btn { width: 100%; justify-content: center; padding: 15px 25px; }
}
