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

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

        /* کارت موزیک */
        .music-card-search {
            background: #2A2A2A;
            border-radius: 16px;
            padding: 12px;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

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

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

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

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

        .play-btn-overlay {
            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;
        }

        .music-card-search:hover .play-btn-overlay {
            opacity: 1;
        }

        .play-icon {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: #A855F7;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 24px rgba(168, 85, 247, 0.4);
            transform: scale(0.8);
            transition: transform 0.3s ease;
        }

        .music-card-search:hover .play-icon {
            transform: scale(1);
        }

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

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

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

        /* فیلترها */
        .filter-container {
            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;
            color: white;
        }

        /* فیلتر دسته‌بندی */
        .filter-select {
            padding: 10px 16px;
            border-radius: 24px;
            background: #2A2A2A;
            color: white;
            border: 1px solid #3A3A3A;
            cursor: pointer;
            font-size: 13px;
            font-family: "Vazirmatn", sans-serif;
            outline: none;
        }

        .filter-select:focus {
            border-color: #A855F7;
        }

        /* هدر */
        .results-header h1 {
            font-size: 28px;
            font-weight: 700;
        }

        .results-header .query-text {
            color: #A855F7;
        }

        .results-count {
            color: #9CA3AF;
            font-size: 14px;
        }

        /* صفحه‌بندی */
        .pagination {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 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;
            font-size: 14px;
        }

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

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

        /* حالت خالی */
        .empty-state {
            text-align: center;
            padding: 60px 20px;
        }

        .empty-state i {
            font-size: 64px;
            color: #4B5563;
            margin-bottom: 16px;
        }

        .empty-state h2 {
            color: #9CA3AF;
            font-size: 20px;
        }

        .empty-state p {
            color: #6B7280;
            margin-top: 8px;
        }



        .section-title {
            font-size: 22px;
            font-weight: 700;
            margin: 40px 0 20px;
            padding-right: 6px;
            border-right: 4px solid #A855F7;
        }

        .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;
        }