.elementor-27605 .elementor-element.elementor-element-7c51cf2{margin-top:50px;margin-bottom:50px;}/* Start custom CSS for html, class: .elementor-element-571ef2b */<style>
        .crm-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        /* Filters Section */
        .crm-filters {
            background: #141414;
            border-radius: 16px;
            padding: 24px;
            margin-bottom: 40px;
            border: 1px solid #1f1f1f;
        }

        .crm-filters-grid {
            display: grid;
            grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr 1.5fr;
            gap: 16px;
        }

        .crm-filter-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .crm-filter-group label {
            font-size: 0.9rem;
            color: #888;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 600;
        }

        .crm-filter-group input,
        .crm-filter-group select {
            background: #0a0a0a;
            border: 1px solid #2a2a2a;
            color: #e5e5e5;
            padding: 10px 12px;
            border-radius: 8px;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .crm-filter-group input:focus,
        .crm-filter-group select:focus {
            outline: none;
            border-color: #ea1d22;
        }

        .crm-filter-actions {
            display: flex;
            gap: 12px;
            margin-top: 16px;
        }

        .crm-btn {
            padding: 10px 24px;
            border-radius: 8px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .crm-btn-primary {
            background: #ea1d22;
            color: white;
        }

        .crm-btn-primary:hover {
            background: #c51519;
            transform: translateY(-2px);
        }

        .crm-btn-secondary {
            background: #2a2a2a;
            color: #e5e5e5;
        }

        .crm-btn-secondary:hover {
            background: #3a3a3a;
        }

        /* Loading State */
        .crm-loading {
            text-align: center;
            padding: 60px 20px;
            color: #666;
            font-size: 1.2rem;
        }

        .crm-loading-spinner {
            width: 50px;
            height: 50px;
            border: 4px solid #2a2a2a;
            border-top-color: #ea1d22;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            margin: 0 auto 20px;
        }

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

        /* Artist Grid */
        .crm-artist-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            margin-bottom: 40px;
        }

        .crm-artist-card {
            background: #141414;
            border-radius: 0;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            cursor: pointer;
            position: relative;
        }

        .crm-artist-card:hover {
            transform: none;
            z-index: 10;
        }

        /* Image Slider */
        .crm-artist-image-slider {
            width: 100%;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
            aspect-ratio: 4 / 5;
        }

        .crm-slider-track {
            display: flex;
            height: 100%;
            transition: transform 0.5s ease;
        }

        .crm-slider-image {
            min-width: 100%;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .crm-slider-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: transparent;
            z-index: 1;
        }

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

        .crm-artist-card:hover .crm-slider-image img {
            transform: scale(1.1);
        }

        /* Slider Navigation */
        .crm-slider-nav {
            position: absolute;
            bottom: 12px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 6px;
            z-index: 5;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .crm-artist-card:hover .crm-slider-nav {
            opacity: 1;
        }

        .crm-slider-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .crm-slider-dot.active {
            background: #ea1d22;
            width: 24px;
            border-radius: 4px;
        }

        .crm-slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 32px;
            height: 32px;
            background: rgba(20, 20, 20, 0.8);
            border: 1px solid rgba(234, 29, 34, 0.5);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 5;
            opacity: 0;
            transition: all 0.3s ease;
            color: #ea1d22;
            font-size: 16px;
            font-weight: bold;
        }

        .crm-artist-card:hover .crm-slider-arrow {
            opacity: 1;
        }

        .crm-slider-arrow:hover {
            background: #ea1d22;
            color: white;
            border-color: #ea1d22;
        }

        .crm-slider-arrow.prev {
            left: 12px;
        }

        .crm-slider-arrow.next {
            right: 12px;
        }

        .image-count {
            position: absolute;
            top: 12px;
            left: 12px;
            background: rgba(20, 20, 20, 0.8);
            color: white;
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 0.75rem;
            z-index: 2;
            border: 1px solid rgba(234, 29, 34, 0.5);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .crm-artist-card:hover .image-count {
            opacity: 1;
        }

        .artist-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            background: #ea1d22;
            color: white;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            z-index: 2;
            letter-spacing: 0.5px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .crm-artist-card:hover .artist-badge {
            opacity: 1;
        }

        .artist-badge.inactive {
            background: #666;
        }

        .crm-artist-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 24px;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 30%, rgba(0, 0, 0, 0.85) 70%, rgba(0, 0, 0, 0.95) 100%);
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            pointer-events: none;
            z-index: 4;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
        }

        .crm-artist-card:hover .crm-artist-content {
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

        .crm-artist-name {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: #fff;
        }

        .artist-meta {
            display: flex;
            gap: 12px;
            margin-bottom: 12px;
            flex-wrap: wrap;
        }

        .meta-item {
            color: #ea1d22;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .artist-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 16px;
        }

        .tag {
            background: #1a1a1a;
            color: #aaa;
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 0.8rem;
            border: 1px solid #2a2a2a;
        }

        .crm-artist-social {
            display: flex;
            gap: 12px;
            padding-top: 16px;
            border-top: 1px solid #252525;
        }

        .crm-social-link {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: #1a1a1a;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #aaa;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid #2a2a2a;
        }

        .crm-social-link:hover {
            background: #ea1d22;
            color: white;
            border-color: #ea1d22;
            transform: translateY(-2px);
        }


        /* Pagination */
        .crm-pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            margin-top: 40px;
        }

        .crm-pagination button {
            padding: 8px 16px;
            border-radius: 8px;
            border: 1px solid #2a2a2a;
            background: #141414;
            color: #e5e5e5;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .crm-pagination button:hover:not(:disabled) {
            background: #ea1d22;
            border-color: #ea1d22;
        }

        .crm-pagination button:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .crm-pagination .crm-page-info {
            color: #888;
            padding: 0 16px;
        }

        /* Artist Modal */
        .crm-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 10, 10, 0.85);
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
            z-index: 2000;
        }

        .crm-artist-modal {
            background: #141414;
            border-radius: 20px;
            width: 100%;
            max-width: 960px;
            max-height: 90vh;
            overflow: hidden;
            border: 1px solid #1f1f1f;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
            position: relative;
            display: flex;
            flex-direction: column;
        }

        .crm-modal-close {
            position: absolute !important;
            top: 16px !important;
            right: 16px !important;
            width: 40px !important;
            height: 40px !important;
            border-radius: 12px !important;
            border: 1px solid rgba(255, 255, 255, 0.1) !important;
            background: rgba(20, 20, 20, 0.8) !important;
            color: white !important;
            font-size: 1.2rem !important;
            cursor: pointer !important;
            transition: all 0.3s ease !important;
            z-index: 5 !important;
            padding: 0px !important;
        }

        .crm-modal-close:hover {
            background: #ea1d22 !important;
            border-color: #ea1d22 !important;
        }

        .crm-artist-modal-body {
            width: 100%;
        }

        .crm-artist-modal-content {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 0;
            height: 100%;
            width: 100%;
        }

        .crm-modal-hero {
            position: relative;
            background: #0a0a0a;
            aspect-ratio: 4 / 5;
            overflow: hidden;
        }

        .crm-modal-slider-track {
            display: flex;
            height: 100%;
            transition: transform 0.5s ease;
        }

        .crm-modal-slider-image {
            width: 100%;
            height: 100%;
            flex-shrink: 0;
        }

        .crm-modal-slider-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .crm-modal-slider-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(15, 15, 15, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 3;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .crm-modal-hero:hover .crm-modal-slider-arrow {
            opacity: 1;
        }

        .crm-modal-slider-arrow.prev {
            left: 16px;
        }

        .crm-modal-slider-arrow.next {
            right: 16px;
        }

        .crm-modal-slider-nav {
            position: absolute;
            bottom: 18px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 6px;
            z-index: 3;
        }

        .crm-modal-slider-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .crm-modal-slider-dot.active {
            width: 24px;
            border-radius: 4px;
            background: #ea1d22;
        }

        .crm-modal-hero-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 30px;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
        }

        .crm-modal-info {
            padding: 30px;
            background: #101010;
            overflow-y: auto;
        }

        .crm-modal-section {
            margin-bottom: 24px;
        }

        .crm-modal-section h3 {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #ea1d22;
            margin-bottom: 10px;
        }

        .crm-modal-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .crm-modal-tag {
            padding: 6px 12px;
            border-radius: 999px;
            background: rgba(234, 29, 34, 0.1);
            border: 1px solid rgba(234, 29, 34, 0.3);
            font-size: 0.8rem;
            color: #ff6b70;
        }

        .crm-modal-meta {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

        .crm-modal-meta-item {
            background: #0f0f0f;
            border-radius: 12px;
            padding: 12px 14px;
            border: 1px solid #1f1f1f;
        }

        .crm-modal-meta-item span {
            display: block;
            font-size: 0.75rem;
            color: #888;
            margin-bottom: 4px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .crm-modal-meta-item strong {
            font-size: 1rem;
            color: white;
        }

        .crm-modal-description {
            color: #bbb;
            line-height: 1.6;
        }

        .crm-modal-socials {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .crm-modal-socials a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 14px;
            border-radius: 12px;
            border: 1px solid #2a2a2a;
            color: #aaa;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .crm-modal-socials a:hover {
            border-color: #ea1d22;
            color: white;
        }

        .crm-modal-loading,
        .crm-modal-error {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 60px 20px;
            text-align: center;
            gap: 12px;
        }

        /* Empty State */
        .crm-empty-state {
            text-align: center;
            padding: 60px 20px;
            color: #666;
        }

        .crm-empty-state-icon {
            font-size: 4rem;
            margin-bottom: 16px;
            color: #666;
        }

        .crm-empty-state-icon i {
            font-size: 4rem;
        }

        /* Tablet and below */
        @media (max-width: 1024px) {
            .crm-artist-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .crm-filters-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Mobile */
        @media (max-width: 768px) {
            .crm-container {
                padding: 30px 15px;
            }

            .crm-filters {
                padding: 16px;
                margin-bottom: 30px;
            }

            .crm-filters-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .crm-filter-actions {
                flex-direction: column;
                margin-top: 12px;
            }

            .crm-btn {
                width: 100%;
                padding: 12px 24px;
            }

            .crm-artist-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 0;
            }

            .crm-artist-content {
                padding: 20px;
            }

            .crm-artist-name {
                font-size: 1.25rem;
            }

            .crm-artist-social {
                gap: 8px;
            }

            .crm-social-link {
                width: 36px;
                height: 36px;
                font-size: 0.9rem;
            }

            .crm-pagination {
                flex-wrap: wrap;
                gap: 6px;
            }

            .crm-pagination button {
                padding: 10px 14px;
                font-size: 0.9rem;
            }

            .crm-pagination .crm-page-info {
                width: 100%;
                text-align: center;
                padding: 8px 0;
            }

            .crm-slider-arrow {
                width: 28px;
                height: 28px;
                font-size: 14px;
            }

            .crm-slider-arrow.prev {
                left: 8px;
            }

            .crm-slider-arrow.next {
                right: 8px;
            }

            .crm-artist-modal {
                padding: 10px;
            }

            .crm-artist-modal-container {
                max-width: 100%;
                max-height: 95vh;
                border-radius: 12px;
            }

            .crm-modal-close {
                top: 10px !important;
                right: 10px !important;
                width: 36px !important;
                height: 36px !important;
                font-size: 1rem !important;
            }

            .crm-artist-modal-content {
                grid-template-columns: 1fr;
                max-height: calc(95vh - 60px);
                overflow-y: auto;
            }

            .crm-modal-hero {
                height: auto;
                min-height: 300px;
            }

            .crm-modal-hero-overlay {
                padding: 20px;
            }

            .crm-modal-hero-overlay h2 {
                font-size: 1.5rem;
            }

            .crm-modal-slider-arrow {
                width: 32px;
                height: 32px;
                font-size: 14px;
            }

            .crm-modal-slider-arrow.prev {
                left: 10px;
            }

            .crm-modal-slider-arrow.next {
                right: 10px;
            }

            .crm-modal-slider-nav {
                bottom: 12px;
            }

            .crm-modal-info {
                padding: 20px;
            }

            .crm-modal-section {
                margin-bottom: 20px;
            }

            .crm-modal-meta {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .crm-modal-socials a {
                padding: 10px 14px;
                font-size: 0.85rem;
            }
        }

        /* Small mobile */
        @media (max-width: 480px) {
            .crm-container {
                padding: 20px 10px;
            }

            .crm-filters {
                padding: 12px;
            }

            .crm-artist-content {
                padding: 16px;
            }

            .crm-artist-name {
                font-size: 1.1rem;
            }

            .crm-artist-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .crm-loading {
                padding: 40px 15px;
                font-size: 1rem;
            }

            .crm-loading-spinner {
                width: 40px;
                height: 40px;
            }

            .crm-empty-state {
                padding: 40px 15px;
            }

            .crm-empty-state-icon {
                font-size: 3rem;
            }

            .crm-empty-state-icon i {
                font-size: 3rem;
            }

            .crm-empty-state h2 {
                font-size: 1.5rem;
            }

            .crm-artist-modal {
                padding: 5px;
            }

            .crm-artist-modal-container {
                max-height: 98vh;
                border-radius: 8px;
            }

            .crm-modal-close {
                top: 8px !important;
                right: 8px !important;
                width: 32px !important;
                height: 32px !important;
                font-size: 0.9rem !important;
            }

            .crm-modal-hero {
                min-height: 250px;
            }

            .crm-modal-hero-overlay {
                padding: 16px;
            }

            .crm-modal-hero-overlay h2 {
                font-size: 1.25rem;
            }

            .crm-modal-slider-arrow {
                width: 28px;
                height: 28px;
                font-size: 12px;
            }

            .crm-modal-slider-arrow.prev {
                left: 8px;
            }

            .crm-modal-slider-arrow.next {
                right: 8px;
            }

            .crm-modal-meta {
                grid-template-columns: 1fr;
            }

            .crm-modal-info {
                padding: 16px;
            }

            .crm-modal-section {
                margin-bottom: 16px;
            }

            .crm-modal-section h3 {
                font-size: 0.8rem;
            }

            .crm-modal-socials a {
                padding: 8px 12px;
                font-size: 0.8rem;
            }

            .modal-socials a i {
                font-size: 0.9rem;
            }
        }
    </style>/* End custom CSS */