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

        /* بنر دسته‌بندی */
        .category-banner {
            position: relative;
            height: 280px;
            background: linear-gradient(135deg, #2A2A2A 0%, #1F1F1F 100%);
            overflow: hidden;
            margin-top: 80px;
        }

        

        .category-banner::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 0%, #1F1F1F 100%);
        }

        .banner-content {
            position: relative;
            z-index: 1;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 30px;
        }

        .category-name {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 10px;
        }

        .category-stats {
            display: flex;
            gap: 24px;
            color: #9CA3AF;
            font-size: 14px;
        }

        .stat-item {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        /* اسلایدر آهنگ‌ها */
        .section-title {
            font-size: 22px;
            font-weight: 700;
            margin: 40px 0 20px;
            padding-right: 6px;
            border-right: 4px solid #A855F7;
        }

        .song-slider-card {
            background: #2A2A2A;
            border-radius: 16px;
            padding: 12px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .song-slider-card:hover {
            background: #3A3A3A;
            transform: translateY(-4px);
        }

        .slider-img-wrapper {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            aspect-ratio: 1;
            margin-bottom: 12px;
        }

        .slider-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .song-slider-card:hover .slider-img {
            transform: scale(1.05);
        }

        .slider-play-btn {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .song-slider-card:hover .slider-play-btn {
            opacity: 1;
        }

        .slider-play-icon {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: #A855F7;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .slider-play-icon svg {
            fill: white;
            margin-left: 3px;
        }

        .slider-song-title {
            font-size: 14px;
            font-weight: 600;
            color: white;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .slider-song-artist {
            font-size: 12px;
            color: #9CA3AF;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        /* اسلایدر خوانندگان */
        .singer-slider-card {
            background: #2A2A2A;
            border-radius: 16px;
            padding: 16px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .singer-slider-card:hover {
            background: #3A3A3A;
            transform: translateY(-4px);
        }

        .singer-img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 12px;
            border: 3px solid #A855F7;
        }

        .singer-name {
            font-size: 14px;
            font-weight: 600;
            color: white;
        }

        /* گرید آهنگ‌ها */
        .songs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 20px;
            padding: 20px 0;
        }

        .grid-card {
            background: #2A2A2A;
            border-radius: 16px;
            padding: 12px;
            transition: all 0.3s ease;
        }

        .grid-card:hover {
            background: #3A3A3A;
            transform: translateY(-4px);
        }

        .grid-img-wrapper {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            aspect-ratio: 1;
            margin-bottom: 12px;
        }

        .grid-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .grid-play-btn {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .grid-card:hover .grid-play-btn {
            opacity: 1;
        }

        .grid-play-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: #A855F7;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .grid-play-icon svg {
            fill: white;
            margin-left: 2px;
        }

        .grid-title {
            font-size: 14px;
            font-weight: 600;
            color: white;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .grid-artist {
            font-size: 12px;
            color: #9CA3AF;
        }

        /* فیلترها */
        .filter-bar {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 24px;
        }

        .filter-btn {
            padding: 10px 20px;
            border-radius: 24px;
            background: #2A2A2A;
            color: white;
            border: none;
            cursor: pointer;
            transition: all 0.2s ease;
            font-size: 13px;
            font-family: "Vazirmatn", sans-serif;
        }

        .filter-btn:hover {
            background: #3A3A3A;
        }

        .filter-btn.active {
            background: #A855F7;
        }

        /* صفحه‌بندی */
        .pagination {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 40px;
            padding-bottom: 40px;
        }

        .pagination a {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            background: #2A2A2A;
            color: white;
            text-decoration: none;
            transition: all 0.2s ease;
        }

        .pagination a:hover {
            background: #3A3A3A;
        }

        .pagination a.current {
            background: #A855F7;
        }

        /* خالی */
        .empty-state {
            text-align: center;
            padding: 60px 20px;
            color: #9CA3AF;
        }