
        body {
            background-color: #1F1F1F;
            color: white;
            font-family: "Vazirmatn", sans-serif;
        }
        .singer-banner {
            position: relative;
            height: 550px;
            background: linear-gradient(135deg, #2A2A2A 0%, #1F1F1F 100%);
            margin-top: 30px;
            overflow: hidden;
        }
        
        .singer-banner::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 0%, #1F1F1F 60%);
        }
        .singer-info {
            position: relative;
            z-index: 1;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 30px;
        }
        .singer-name {
            font-size: 52px;
            font-weight: 800;
            margin-bottom: 8px;
        }
        .singer-stats {
            display: flex;
            gap: 24px;
            color: #9CA3AF;
            font-size: 14px;
        }
        .singer-stat {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .section {
            padding: 30px 0;
            border-bottom: 1px solid #2A2A2A;
        }
        .section:last-child {
            border-bottom: none;
        }
        .section-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 20px;
            padding-right: 12px;
            border-right: 4px solid #A855F7;
        }
        .songs-table {
            width: 100%;
            border-collapse: collapse;
        }
        .songs-table th {
            text-align: right;
            padding: 12px 16px;
            color: #9CA3AF;
            font-weight: 500;
            font-size: 13px;
            border-bottom: 1px solid #2A2A2A;
        }
        .songs-table td {
            padding: 12px 16px;
            border-bottom: 1px solid #2A2A2A;
        }
        .songs-table tr:hover {
            background: #2A2A2A;
        }
        .song-cell {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .song-thumb {
            width: 48px;
            height: 48px;
            border-radius: 8px;
            object-fit: cover;
        }
        .song-info h4 {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 2px;
        }
        .song-info p {
            font-size: 12px;
            color: #9CA3AF;
        }
        .duration, .views-count {
            color: #9CA3AF;
            font-size: 13px;
        }
        .top-slider-card {
            background: #2A2A2A;
            border-radius: 16px;
            padding: 12px;
            transition: all 0.3s ease;
        }
        .top-slider-card:hover {
            background: #3A3A3A;
            transform: translateY(-4px);
        }
        .top-img-wrapper {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            aspect-ratio: 1;
            margin-bottom: 12px;
        }
        .top-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .top-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;
        }
        .top-slider-card:hover .top-play-btn {
            opacity: 1;
        }
        .top-play-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: #A855F7;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .top-play-icon svg {
            fill: white;
            margin-left: 2px;
        }
        .top-title {
            font-size: 13px;
            font-weight: 600;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        /* سرچ */
        .search-box {
            display: flex;
            gap: 12px;
            margin-bottom: 20px;
        }
        .search-input-wrapper {
            flex: 1;
            position: relative;
        }
        .search-input {
            width: 100%;
            padding: 12px 20px;
            padding-right: 44px;
            background: #2A2A2A;
            border: 1px solid #3A3A3A;
            border-radius: 12px;
            color: white;
            font-family: "Vazirmatn", sans-serif;
            font-size: 14px;
        }
        .search-input:focus {
            outline: none;
            border-color: #A855F7;
        }
        .search-input::placeholder {
            color: #6B7280;
        }
        .search-icon {
            position: absolute;
            right: 14px;
            top: 50%;
            transform: translateY(-50%);
            color: #6B7280;
            pointer-events: none;
        }
        .search-clear {
            position: absolute;
            left: 12px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #6B7280;
            cursor: pointer;
            font-size: 18px;
            display: none;
            padding: 4px;
        }
        .search-clear.visible {
            display: block;
        }
        .search-clear:hover {
            color: white;
        }
        .search-loading {
            position: absolute;
            left: 14px;
            top: 50%;
            transform: translateY(-50%);
            display: none;
        }
        .search-loading.visible {
            display: block;
        }
        .spinner {
            width: 18px;
            height: 18px;
            border: 2px solid #3A3A3A;
            border-top-color: #A855F7;
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }
        @keyframes spin {
            to { transform: rotate(360deg); }
        }
        .pagination {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 30px;
        }
        .pagination a,
        .pagination span {
            min-width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            background: #2A2A2A;
            color: white;
            text-decoration: none;
            font-size: 13px;
            transition: all 0.2s;
            cursor: pointer;
            border: none;
        }
        .pagination a:hover {
            background: #3A3A3A;
        }
        .pagination a.current,
        .pagination span.current {
            background: #A855F7;
        }
        .pagination .disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        .empty-state {
            text-align: center;
            padding: 40px;
            color: #9CA3AF;
        }
        .empty-state i {
            font-size: 40px;
            margin-bottom: 12px;
            display: block;
        }
        .results-info {
            font-size: 13px;
            color: #9CA3AF;
            margin-bottom: 16px;
        }
   