
        body {
            background-color: #1F1F1F;
            color: white;
            font-family: "Vazirmatn", sans-serif;
        }

        .gramophone {
            animation: spin 10s linear infinite;
        }

        @keyframes spin {
            100% {
                transform: rotate(360deg);
            }
        }

        .mobile-menu-open {
            display: flex !important;
            /* مجبور کردن نمایش منو در موبایل وقتی باز است */
        }

        #mobile-menu a {
            display: block;
            /* یا flex با تنظیمات مناسب */
            width: 100%;
            /* یا تنظیمات دیگر */
            text-align: right;
            /* چون فارسی است */
            margin-bottom: 12px;
            /* مثلاً برای فاصله گذاری */
        }


        .bg-white.bg-opacity-10 {
            background-color: rgba(255, 255, 255, 0.1);
        }

        /* کلاس ترنزیشن سفارشی برای اعمال نرمی تغییرات */
        .custom-card-transition {
            transition: background-color 999ms ease;
            /* تغییر 500 میلی‌ثانیه‌ای برای افکت نرم‌تر */
        }

        /* استایل‌های هاور (که اکنون از کلاس سفارشی برای مدت زمان استفاده می‌کنند) */
        .hover\:bg-pink-600:hover {
            background-color: #db2777;
        }

        .hover\:bg-blue-500:hover {
            background-color: #3b82f6;
        }

        .hover\:bg-purple-600:hover {
            background-color: #9333ea;
        }

        .hover\:bg-green-500:hover {
            background-color: #10b981;
        }

        .text-white {
            color: white;
        }


.spotify-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    width: 100%;
    padding: 0 1.5rem;
}

/* مدیا کوئری برای سایزهای بزرگتر */
@media (min-width: 640px) {
    .spotify-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .spotify-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* استایل لینک (حذف خط زیرین) */
.spotify-card-link {
    display: block;
    text-decoration: none;
}

/* استایل کارت */
.spotify-card {
    position: relative;
    background-color: #181818;
    padding: 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* تغییر به flex-start برای مدیریت بهتر ارتفاع */
    
    /* اصلاحات اصلی اینجا انجام شد: */
    min-height: 12rem; /* به جای height ثابت، از حداقل ارتفاع استفاده می‌کنیم */
    height: auto; /* اجازه می‌دهد کارت در صورت نیاز بزرگتر شود */
    padding-bottom: 3.5rem; /* فضای خالی در پایین کارت تا متن پشت دکمه پخش نرود */
    overflow: hidden; /* برای گرد ماندن گوشه‌ها و برش تمیز */
}

/* افکت هاور روی کارت */
.spotify-card:hover {
    background-color: #282828;
    transform: scale(1.05);
}

/* کانتینر تصویر */
.spotify-img-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    margin-bottom: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    border-radius: 0.375rem;
    overflow: hidden;
    flex-shrink: 0; /* جلوگیری از جمع شدن تصویر */
}

/* خود تصویر */
.spotify-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* متن عنوان */
.spotify-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    width: 100%;
    line-height: 1.4; /* فاصله مناسب بین خطوط در صورت چند خطی شدن */
    margin-top: auto; /* متن را به سمت پایین هل می‌دهد تا زیبایی حفظ شود */
    
    /* تکنیک حرفه‌ای برای نمایش حداکثر ۲ خط و قرار دادن "..." در انتهای خط دوم */
    display: -webkit-box;
    -webkit-line-clamp: 2; /* حداکثر ۲ خط نمایش داده شود */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* دکمه پخش سبز */
.spotify-play-btn {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 3rem;
    height: 3rem;
    background-color: #1db954;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(0.5rem);
    transition: all 0.3s ease;
    z-index: 10; /* اطمینان از اینکه دکمه روی متن قرار می‌گیرد */
}

/* نمایش دکمه پخش در هاور */
.spotify-card:hover .spotify-play-btn {
    opacity: 1;
    transform: translateY(0);
}

        .mix-card {
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.3),
        0 1px 3px rgba(0, 0, 0, 0.2);
    width: 260px;
}

.mix-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.4);
}

/* ===== بخش تصویر ===== */
.mix-card-image-wrapper {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.mix-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.mix-card:hover .mix-card-image {
    transform: scale(1.1);
}

/* ===== اوورلی گرادیانت ===== */
.mix-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        transparent 40%,
        rgba(26, 26, 46, 0.6) 70%,
        rgba(26, 26, 46, 0.95) 100%
    );
    transition: all 0.4s ease;
}

.mix-card:hover .mix-card-overlay {
    background: linear-gradient(
        180deg,
        rgba(139, 92, 246, 0.1) 0%,
        rgba(26, 26, 46, 0.4) 40%,
        rgba(26, 26, 46, 0.9) 100%
    );
}

/* ===== دکمه پخش ===== */
.mix-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow:
        0 8px 30px rgba(139, 92, 246, 0.5),
        0 0 0 8px rgba(139, 92, 246, 0.15);
    z-index: 2;
}

.mix-card:hover .mix-play-btn {
    transform: translate(-50%, -50%) scale(1);
}

.mix-play-btn:hover {
    background: linear-gradient(135deg, #a78bfa, #818cf8);
    box-shadow:
        0 12px 40px rgba(139, 92, 246, 0.7),
        0 0 0 12px rgba(139, 92, 246, 0.2);
}

.mix-play-btn i {
    margin-left: 4px; /* راست‌چین برای آیکون play */
}

/* ===== مدت زمان ===== */
.mix-duration {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    z-index: 2;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== بخش محتوا ===== */
.mix-card-content {
    padding: 16px;
}

/* ===== عنوان ===== */
.mix-title {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.mix-card:hover .mix-title {
    color: #c4b5fd;
}

.mix-subtitle {
    font-size: 12px;
    color: #9ca3af;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 12px;
}







.mix-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #8b5cf6, #ec4899);
    border-radius: 3px;
    transition: width 0.5s ease;
}

/* ===== تگ‌ها ===== */
.mix-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.mix-tag {
    padding: 3px 10px;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.25);
    color: #a78bfa;
    font-size: 11px;
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mix-tag:hover {
    background: rgba(139, 92, 246, 0.25);
    border-color: rgba(139, 92, 246, 0.4);
}

/* ===== دکمه‌های ناوبری اسلایدر ===== */
.mix-nav-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.mix-nav-btn:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.4);
}

.mix-nav-btn::after {
    font-size: 14px;
    font-weight: bold;
}



/* ===== تنظیمات کلی اسلایدرهای موزیک ===== */
.music-slider-container {
    position: relative;
    width: 100%;
    padding: 0 10px;
    overflow: hidden;
}

.music-swiper-main {
    width: 100%;
    padding-bottom: 50px; /* فضا برای Pagination */
}

/* تنظیم عرض اسلاید برای جلوگیری از روی هم افتادن */
.music-swiper-main .swiper-slide {
    width: 260px !important; /* عرض ثابت کارت */
    height: auto;
    flex-shrink: 0 !important;
}

/* دکمه‌های ناوبری کاستوم */
.custom-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.custom-nav-btn:hover {
    background: white;
    color: black;
    transform: translateY(-50%) scale(1.1);
}

.custom-prev {
    right: -15px; /* دکمه راست در RTL */
}

.custom-next {
    left: -15px; /* دکمه چپ در RTL */
}

/* مخفی کردن دکمه‌ها وقتی غیرفعال هستند */
.custom-nav-btn.swiper-button-disabled {
    opacity: 0;
    pointer-events: none;
}

/* ===== Pagination سفارشی ===== */
.music-swiper-main .swiper-pagination {
    bottom: 0 !important;
    position: relative !important; /* تغییر از absolute برای قرارگیری زیر کارت‌ها */
    margin-top: 15px;
}

.music-swiper-main .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #555;
    opacity: 1;
    margin: 0 4px !important;
    transition: all 0.3s;
}

.music-swiper-main .swiper-pagination-bullet-active {
    background: #fff;
    transform: scale(1.3);
}

/* ===== استایل کارت موزیک (تم مشکی و سفید) ===== */
.music-card-modern {
    background-color: #2a2a2a;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #333;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.music-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    border-color: #555;
}

.music-card-link {
    text-decoration: none;
    color: white;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* تصویر */
.card-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%; /* مربع کامل */
    overflow: hidden;
    background: #1f1f1f;
}

.card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.music-card-modern:hover .card-img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.8));
}

/* دکمه پخش وسط */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.music-card-modern:hover .play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.play-btn i {
    font-size: 24px;
    color: white;
    margin-left: 4px;
}

.duration-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    z-index: 2;
}

/* محتوا */
.card-content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1;
}

.song-title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #fff;
}

.artist-name {
    font-size: 0.85rem;
    color: #aaa;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* آمار (لایک و ویو) */
.stats-row {
    display: flex;
    gap: 8px;
    margin-top: 5px;
}

.stat-pill {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #3a3a3a;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    color: #e0e0e0;
}

.stat-pill i {
    font-size: 0.75rem;
}

/* دکمه‌های اکشن */
.action-buttons {
    display: flex;
    gap: 10px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #333;
}

.btn-action {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-play {
    background-color: #fff;
    color: #000;
}

.btn-play:hover {
    background-color: #e6e6e6;
}

.btn-share {
    background-color: transparent;
    border: 1px solid #555;
    color: #fff;
}

.btn-share:hover {
    background-color: #fff;
    color: #000;
    border-color: #fff;
}

/* ===== ریسپانسیو برای موبایل ===== */
@media (max-width: 768px) {
    .music-swiper-main .swiper-slide {
        width: 240px !important; /* کمی کوچکتر در موبایل */
    }
    
    .custom-nav-btn {
        display: none; /* در موبایل معمولاً کشیدن با انگشت بهتر است، دکمه‌ها شلوغ می‌کنند */
    }
}


/* ===== استایل‌های اختصاصی ریمیکس ===== */
.remixes-swiper {
    padding-bottom: 60px !important; /* فضا برای Pagination */
}

/* کانتینر کارت */
.remix-card {
    background: #1e1e24; /* رنگ پس‌زمینه کارت */
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.remix-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(219, 39, 119, 0.15); /* سایه صورتی نئونی */
    border-color: rgba(219, 39, 119, 0.3);
}

/* تصویر */
.remix-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%; /* مربع کامل */
    overflow: hidden;
}

.remix-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.remix-card:hover .remix-img {
    transform: scale(1.1);
}

.remix-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #1e1e24 10%, transparent 60%);
    z-index: 1;
}

/* دکمه پخش */
.remix-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 50px;
    height: 50px;
    background: rgba(219, 39, 119, 0.9); /* صورتی */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(219, 39, 119, 0.4);
}

.remix-card:hover .remix-play-btn {
    transform: translate(-50%, -50%) scale(1);
}

.remix-play-btn:hover {
    background: #fff;
    color: #db2777;
}

/* محتوای متنی */
.remix-content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.remix-dj {
    font-size: 0.8rem;
    color: #db2777; /* صورتی */
    font-weight: 600;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.remix-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* تگ‌ها */
.remix-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
}

.remix-tag {
    font-size: 0.7rem;
    background: rgba(255, 255, 255, 0.08);
    color: #ccc;
    padding: 3px 8px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.remix-card:hover .remix-tag {
    background: rgba(219, 39, 119, 0.15);
    border-color: rgba(219, 39, 119, 0.3);
    color: #f472b6;
}

/* Pagination سفارشی برای ریمیکس */
.remix-pagination .swiper-pagination-bullet {
    background: #555;
    opacity: 1;
}
.remix-pagination .swiper-pagination-bullet-active {
    background: #db2777; /* صورتی */
    transform: scale(1.2);
}

/* ===== ریسپانسیو (رفع مشکل روی هم افتادن) ===== */
.remixes-swiper .swiper-slide {
    height: auto; /* ارتفاع خودکار */
    width: 280px !important; /* عرض ثابت برای دسکتاپ */
}

@media (max-width: 768px) {
    .remixes-swiper .swiper-slide {
        width: 260px !important; /* کمی کوچکتر در موبایل */
    }
}



/* ===== استایل‌های اختصاصی میکس ===== */
.myMixSwiper {
    padding-bottom: 60px !important; /* فضا برای Pagination */
}

/* کارت میکس */
.mix-card {
    background: linear-gradient(180deg, rgba(30, 30, 40, 0.8) 0%, rgba(15, 15, 20, 0.9) 100%);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(139, 92, 246, 0.1); /* حاشیه بنفش خیلی کمرنگ */
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mix-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(139, 92, 246, 0.15); /* سایه بنفش */
    border-color: rgba(139, 92, 246, 0.4);
}

/* تصویر */
.mix-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 60%; /* نسبت تصویر ۱۰ به ۶ (عمودی‌تر) */
    overflow: hidden;
}

.mix-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.mix-card:hover .mix-img {
    transform: scale(1.1);
}

.mix-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 15, 20, 1) 0%, transparent 70%);
}

/* دکمه پخش */
.mix-play-btn {
    position: absolute;
    top: 20px;
    left: 20px; /* در RTL سمت چپ قرار می‌گیرد */
    width: 45px;
    height: 45px;
    background: rgba(139, 92, 246, 0.8); /* بنفش */
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.mix-card:hover .mix-play-btn {
    opacity: 1;
    transform: translateY(0);
}

.mix-play-btn:hover {
    background: #fff;
    color: #8b5cf6;
}

/* محتوا */
.mix-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.mix-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mix-desc {
    font-size: 0.85rem;
    color: #9ca3af;
    margin: 0;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Pagination */
.mix-pagination .swiper-pagination-bullet {
    background: #555;
    opacity: 1;
}
.mix-pagination .swiper-pagination-bullet-active {
    background: #8b5cf6; /* بنفش */
    transform: scale(1.2);
}

/* ===== رفع مشکل موبایل (بسیار مهم) ===== */
.myMixSwiper .swiper-slide {
    height: auto;
    width: 300px !important; /* عرض ثابت برای دسکتاپ */
}

@media (max-width: 768px) {
    .myMixSwiper .swiper-slide {
        width: 260px !important; /* عرض کمی کمتر برای موبایل */
    }
}

/* ===== استایل‌های اصلاح شده اسلایدر خوانندگان ===== */

/* کانتینر اصلی Swiper */
.singers-swiper {
    padding-bottom: 60px !important; /* فضای خالی برای Pagination */
    width: 100%;
}

/* تنظیم عرض اسلایدها برای جلوگیری از روی هم افتادن */
.singers-swiper .swiper-slide {
    height: auto;
    width: 220px !important; /* عرض پیش‌فرض در دسکتاپ */
    flex-shrink: 0; /* جلوگیری از فشرده شدن کارت‌ها در کنار هم */
}

/* تنظیم عرض در تبلت و موبایل بزرگ */
@media (max-width: 768px) {
    .singers-swiper .swiper-slide {
        width: 160px !important;
    }
}

/* تنظیم عرض در موبایل کوچک */
@media (max-width: 480px) {
    .singers-swiper .swiper-slide {
        width: 140px !important;
    }
}

/* --- استایل‌های داخلی کارت (بدون تغییر اساسی) --- */

.singer-card-link {
    text-decoration: none;
    display: block;
}

.singer-card-artistic {
    position: relative;
    width: 100%; /* تمام عرض اسلایدر را پر می‌کند */
    height: 300px;
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.singer-card-artistic:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
}

/* Decorative Background Effect */
.singer-bg-effect {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at 30% 30%,
        rgba(139, 92, 246, 0.1) 0%,
        transparent 50%
    );
    opacity: 0.5;
    pointer-events: none;
}

/* Image Container */
.singer-image-container {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 30px auto 20px;
}

.singer-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.singer-card-artistic:hover .singer-main-image {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Glow Ring Effect */
.singer-glow-ring {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(135deg, #8b5cf6, #ec4899, #8b5cf6) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    opacity: 0;
    transition: all 0.4s ease;
    animation: rotate 8s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.singer-card-artistic:hover .singer-glow-ring {
    opacity: 1;
}

/* Hover Overlay */
.singer-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.4);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 3;
}

.singer-card-artistic:hover .singer-hover-overlay {
    opacity: 1;
}

.singer-view-profile {
    display: flex;
    align-items: center;
    gap: 6px;
    color: white;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

/* Singer Info Section */
.singer-info-section {
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.singer-name {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.singer-card-artistic:hover .singer-name {
    background: linear-gradient(90deg, #a78bfa, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Singer Meta */
.singer-meta {
    display: flex;
    justify-content: center;
}

.singer-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(139, 92, 246, 0.15);
    color: #a78bfa;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.singer-badge i {
    font-size: 10px;
}

/* Decorative Corner */
.singer-corner-decor {
    position: absolute;
    bottom: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
    color: rgba(139, 92, 246, 0.3);
    transform: rotate(180deg);
    transition: all 0.3s ease;
}

.singer-card-artistic:hover .singer-corner-decor {
    color: rgba(139, 92, 246, 0.6);
    transform: rotate(180deg) scale(1.2);
}
