#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); }

 .modern-ai-banner {
     position: relative;
     width: 100%;
     border-radius: 24px;
     overflow: hidden;
     background: radial-gradient(circle at 10% 20%, #2b1c55 0%, #100b26 90%);
     box-shadow: 0 20px 50px rgba(28, 10, 66, 0.3);
     border: 1px solid rgba(255, 255, 255, 0.08);
     padding: 0;
     min-height: 220px;
     display: flex;
     align-items: center;
 }
.glow-blob {
    position: absolute;
    width: 300px; height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    z-index: 0;
    animation: floatBlob 10s infinite alternate ease-in-out;
}
.blob-1 { background: #7c4dff; top: -100px; left: -50px; }
.blob-2 { background: #ff4081; bottom: -100px; right: 20%; width: 250px; height: 250px; opacity: 0.4; }

@keyframes floatBlob {
    0% { transform: translate(0, 0); }
    100% { transform: translate(30px, 50px); }
}

.banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 30px 40px;
    gap: 30px;
}

.left-section { flex: 1.2; min-width: 280px; }

.badge-new {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    color: #ffcd57; font-size: 11px; font-weight: 700;
    margin-bottom: 12px;
    backdrop-filter: blur(5px);
}

.hero-title {
    color: #fff; font-size: 28px; line-height: 1.2; font-weight: 700; margin-bottom: 8px;
}
.gradient-text {
    background: linear-gradient(90deg, #a094ff, #ff80ab);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc { color: rgb(247, 247, 250); font-size: 18px; margin-bottom: 20px; font-weight: 300; }

.lang-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.lang-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff; padding: 6px 14px; border-radius: 50px;
    cursor: pointer; display: flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 500;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.lang-pill img { width: 18px; border-radius: 50%; }
.lang-pill:hover { background: rgba(255, 255, 255, 0.15); transform: translateY(-2px); }
.lang-pill.active {
    background: #fff; color: #2b1c55; border-color: #fff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3); font-weight: 700;
}

.center-section {
    display: flex; gap: 15px; justify-content: center;
    perspective: 1000px; /* 3D etkisi için */
}

.nv-glass-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 12px;
    width: 100px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); /* Bouncy effect */
    position: relative;
    overflow: hidden;
}

.nv-glass-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.nv-glass-card.is-playing {
    border-color: #a094ff;
    box-shadow: 0 0 20px rgba(160, 148, 255, 0.4);
    background: rgba(43, 28, 85, 0.6);
}

.card-img-box {
    width: 50px; height: 50px; margin: 0 auto 8px; position: relative;
}
.card-img-box img {
    width: 100%; height: 100%; border-radius: 50%; object-fit: cover;
    border: 2px solid rgba(255,255,255,0.8);
}
.play-overlay {
    position: absolute; inset: 0; background: rgba(0,0,0,0.4); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s;
}
.nv-glass-card:hover .play-overlay, .nv-glass-card.is-playing .play-overlay { opacity: 1; }
.play-overlay i { color: #fff; font-size: 14px; }

.card-info h6 { color: #fff; font-size: 12px; font-weight: 600; margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.card-info span { font-size: 10px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.5px; }

.wave-anim {
    position: absolute; bottom: 0; left: 0; width: 100%; height: 4px;
    display: flex; align-items: flex-end; justify-content: center; gap: 2px;
    opacity: 0; transition: opacity 0.3s;
}
.nv-glass-card.is-playing .wave-anim { opacity: 1; bottom: 5px; }
.wave-bar { width: 3px; background: #a094ff; border-radius: 2px; animation: wave 1s infinite ease-in-out; }
.wave-bar:nth-child(1) { height: 6px; animation-delay: 0s; }
.wave-bar:nth-child(2) { height: 12px; animation-delay: 0.1s; }
.wave-bar:nth-child(3) { height: 8px; animation-delay: 0.2s; }
@keyframes wave { 0%,100% { height: 4px; } 50% { height: 14px; } }


.right-section { flex: 0 0 auto; }

.glass-cta-btn {
    display: flex; align-items: center; gap: 15px;
    background: #fff;
    padding: 10px 10px 10px 24px;
    border-radius: 60px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.glass-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}
.btn-text { display: flex; flex-direction: column; line-height: 1.1; }
.btn-text span { color: #2b1c55;}
.btn-text small { color: #7c4dff; text-transform: uppercase; }

.icon-circle {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, #7c4dff, #ff4081);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 16px;
    transition: transform 0.4s ease;
}
.glass-cta-btn:hover .icon-circle { transform: rotate(-45deg); }

@media (max-width: 991px) {
    .modern-ai-banner { flex-direction: column; padding: 30px 20px; text-align: center; gap: 25px; }
    .banner-content { flex-direction: column; padding: 0; width: 100%; }
    .left-section { width: 100%; display: flex; flex-direction: column; align-items: center; }
    .lang-pills { justify-content: center; }
    .center-section { width: 100%; overflow-x: auto; padding-bottom: 15px; justify-content: flex-start; padding-left: 10px; }
    .right-section { width: 100%; }
    .glass-cta-btn { width: 100%; justify-content: space-between; }
}