#voiserHeroModal .modal-content {
    border-radius: 24px;
    border: none;
    background: #f8f9fd;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.hero-header {
    background: linear-gradient(135deg, #7360d4 0%, #8e7ce6 100%);
    padding: 40px 20px 70px 20px;
    text-align: center;
    color: #fff;
    position: relative;
}


.header-wave {
    position: absolute; bottom: -1px; left: 0; width: 100%; line-height: 0;
}

.hero-header h3 {
    margin-bottom: 10px; color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hero-header p { color: white}

.close-hero {
    position: absolute; top: 20px; right: 20px;
    width: 32px; height: 32px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: 0.2s; backdrop-filter: blur(5px);
    color: #fff; z-index: 10;
}
.close-hero:hover { background: #fff; color: #7360d4; }

.lang-nav-wrapper {
    display: flex; justify-content: center; gap: 8px; flex-wrap: wrap;
    position: relative; z-index: 2; margin-top: 25px;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff; padding: 5px 8px; border-radius: 50px;
    font-size: 13px; font-weight: 500; cursor: pointer;
    transition: all 0.3s ease; display: flex; align-items: center; gap: 8px;
}
.lang-btn:hover { background: rgba(255, 255, 255, 0.3); }
.lang-btn.active {
    background: #fff; color: #7360d4; font-weight: 700;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1); transform: scale(1.05);
}

.lang-icon {
    width: 23px; height: 23px; border-radius: 50%; object-fit: cover;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.5);
}

.hero-body {
    padding: 0 30px 20px 30px;
    margin-top: -50px;
    position: relative; z-index: 5;
}

.hero-grid {
    display: grid; grid-template-columns: repeat(1, 1fr); gap: 20px;
}
@media(min-width: 992px) { .hero-grid { grid-template-columns: repeat(3, 1fr); } }

.h-card {
    background: #fff; border-radius: 20px; padding: 20px 5px;
    text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.3s ease; position: relative; cursor: pointer;
    border: 2px solid transparent; margin-top: 10px;
    display: flex; flex-direction: column; align-items: center;
}
.h-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(115, 96, 212, 0.15); }
.h-card.is-playing { border-color: #7360d4; background: #fdfcff; }

.h-avatar {
    width: 80px; height: 80px; margin: 0 auto 10px auto;
    border-radius: 50%; padding: 3px; background: #fff;
    border: 1px solid #eee; box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.h-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }

.h-name { font-size: 18px; font-weight: 700; color: #333; margin-bottom: 5px; }

.badges-row {
    display: flex; gap: 5px; justify-content: center; margin-bottom: 10px;
}
.pill-badge {
    font-size: 13px; font-weight: 600; color: #fff;
    padding: 3px 10px; border-radius: 12px;
    display: flex; align-items: center; gap: 3px;
}
.bg-green { background: #10b981; }
.bg-orange { background: #f97316; }

.tags-container {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 6px;
    margin-bottom: 15px; width: 100%;
}
.gray-tag {
    background: #f1f5f9; color: #475569;
    font-size: 11px; font-weight: 500;
    padding: 4px 8px; border-radius: 6px;
    display: flex; align-items: center; gap: 5px;
}
.gray-tag img { width: 16px; height: 16px; border-radius: 50%; }
.gray-tag i { font-size: 12px; }

.desc-text {
    font-size: 12px; color: #94a3b8; margin-bottom: 15px;
    height: 18px;
}

.h-play-btn {
    width: 50px; height: 50px; border-radius: 50%;
    background: linear-gradient(135deg, #7360d4 0%, #8a7de0 100%);
    color: #fff; display: flex; align-items: center; justify-content: center;
    font-size: 18px; box-shadow: 0 5px 15px rgba(115, 96, 212, 0.3);
    transition: all 0.3s; padding-left: 4px;
}
.h-play-btn:hover { transform: scale(1.1); box-shadow: 0 8px 25px rgba(115, 96, 212, 0.5); }
.h-play-btn.playing { padding-left: 0; background: #2d3748; }

.hero-footer {
    background: #fff; padding: 20px 30px; text-align: center; border-top: 1px solid #f0f0f0;
    position: relative; z-index: 6;
}
.cta-container {
    background: linear-gradient(135deg, #7360d4 0%, #8e7ce6 100%);
    border-radius: 16px; padding: 20px; border: 1px solid #e9e4ff;
    display: flex; flex-direction: column; align-items: center; gap: 15px;
}
.hero-link {
    color: #ffffff;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.hero-link:hover {
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    text-decoration: none;
}
@media(min-width: 768px) {
    .cta-container { flex-direction: row; justify-content: space-between; text-align: left; padding: 20px 30px; }
}
.cta-text h4 {  color: white; margin-bottom: 4px; }
.cta-text p { color: white; margin: 0; }
.cta-btn {
    background: #2d3748; color: #fff !important; padding: 12px 28px;
    border-radius: 50px; font-weight: 600; font-size: 14px; text-decoration: none;
    display: flex; align-items: center; gap: 10px; transition: 0.3s;
}
.cta-btn:hover { background: #7360d4; transform: translateY(-2px); }
