<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* BlazinStreetz Artists Page Styles */

/* Swiper Styles */
.swiper-slide {
    text-align: left;
}

.slide-card {
    background-color: var(--background-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    /* Enable instant touch response on mobile */
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

.slide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.slide-cover {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

/* Trending Artists specific 16:9 aspect ratio */
.artist-card .slide-cover {
    aspect-ratio: 16/9;
}

/* Trending Artists specific slide-info spacing adjustment */
.artist-card .slide-info {
    height: 80px;
    padding: 12px 20px;
}

.artist-card .slide-title {
    margin-bottom: 6px;
}

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

.slide-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slide-card:hover .slide-play-overlay {
    opacity: 1;
}

.slide-play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: red;
    border: none;
    color: white;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slide-play-btn:hover {
    background-color: red;
    transform: scale(1.1);
}

.slide-info {
    padding: 20px;
    height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
}

.slide-title {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.slide-artist {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.slide-stats {
    display: none !important;
}

/* Artist card specific stats display */
.artist-card .slide-stats {
    display: flex !important;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* DJ Spotlight specific stats display */
.dj-spotlight-card .slide-stats {
    display: flex !important;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* DJ Spotlight specific slide-info spacing */
.dj-spotlight-card .slide-info {
    height: 80px; /* Moderate increase */
    padding: 12px 20px; /* Slight padding reduction */
}

.dj-spotlight-card .slide-title {
    margin-bottom: 6px; /* Reduce title bottom margin */
}

.slide-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Mobile responsive styles for swiper */
@media (max-width: 768px) {

    .slide-title {
        font-size: 0.95rem;
        line-height: 1.3;
        margin-bottom: 6px;
    }

    .slide-artist {
        font-size: 0.8rem;
        line-height: 1.3;
        margin-bottom: 8px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .slide-stats {
        font-size: 0.75rem;
        gap: 15px;
    }

    .slide-info {
        padding: 12px 15px;
        height: 100px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
    }
}

@media (max-width: 576px) {

    .slide-title {
        font-size: 0.9rem;
        line-height: 1.3;
        margin-bottom: 5px;
    }

    .slide-artist {
        font-size: 0.75rem;
        line-height: 1.3;
        margin-bottom: 6px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .slide-stats {
        font-size: 0.7rem;
        gap: 12px;
    }

    .slide-info {
        padding: 10px 12px;
        height: 85px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
    }
}

/* Responsive overrides for artist-card slide-info */
@media (max-width: 768px) {
    .artist-card .slide-info {
        height: 85px;
        padding: 12px 15px;
    }
    
    .dj-spotlight-card .slide-info {
        height: 70px;
        padding: 10px 15px;
    }
}

@media (max-width: 576px) {
    .artist-card .slide-info {
        height: 50px;
        padding: 8px 12px;
    }
    
    .artist-card .slide-title {
        margin-bottom: 0;
        line-height: 1.2;
    }
    
    .dj-spotlight-card .slide-info {
        height: 55px;
        padding: 8px 12px;
    }
    
    .dj-spotlight-card .slide-title {
        margin-bottom: 3px;
        line-height: 1.4;
        overflow: visible;
    }
}

/* Slide link styles for clickable artist cards */
.slide-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.slide-link:hover {
    text-decoration: none;
    color: inherit;
}

.slide-link:hover .slide-card {
    transform: translateY(-7px);
}

/* Enhanced hover effect for artist-grid cards - desktop only */
@media (hover: hover) and (pointer: fine) {
    .artist-grid .slide-link:hover .artist-card {
        transform: translateY(-8px);
    }
}

/* Artist Grid Styles */
.artist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.artist-grid .artist-card {
    background-color: var(--background-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    position: relative;
    /* Enable instant touch response on mobile */
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

/* Simple fade-in animation for new cards only */
.artist-grid .artist-card.new-card {
    animation: fadeIn 0.2s ease-out;
    will-change: transform, opacity;
}

@keyframes fadeIn {
    from { 
        opacity: 0;
        transform: translateY(10px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Skeleton loading placeholders */
.skeleton-card {
    background-color: var(--background-light);
    border-radius: 12px;
    overflow: hidden;
    min-height: 300px;
    position: relative;
}

.skeleton-image {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(90deg, #1a1a1a 25%, #2a2a2a 50%, #1a1a1a 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

.skeleton-info {
    padding: 20px;
}

.skeleton-text {
    height: 20px;
    background: linear-gradient(90deg, #1a1a1a 25%, #2a2a2a 50%, #1a1a1a 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    margin-bottom: 10px;
    border-radius: 4px;
}

.skeleton-text.small {
    width: 60%;
    height: 16px;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

@media (hover: hover) and (pointer: fine) {
    .artist-grid .artist-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
}

.artist-image {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative;
}

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

@media (hover: hover) and (pointer: fine) {
    .artist-card:hover .artist-image img {
        transform: scale(1.1);
    }
}

.artist-info {
    padding: 20px;
}

.artist-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.artist-genre {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.artist-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Center artist stats in artist grid */
.artist-grid .artist-stats {
    display: block;
    text-align: center;
}

.artist-grid .artist-stats span {
    display: inline;
}

.filter-bar {
    background-color: var(--background-light);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.filter-tag {
    background-color: var(--background-dark);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-tag:hover,
.filter-tag.active {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
}

.loading-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.loading-card {
    background-color: var(--background-light);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

/* Enhanced hover effects matching homepage */

.artist-grid .artist-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(220, 53, 69, 0.1), rgba(220, 53, 69, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
    z-index: 1;
}

@media (hover: hover) and (pointer: fine) {
    .artist-grid .artist-card:hover::before {
        opacity: 1;
    }
}

.artist-info {
    position: relative;
    z-index: 2;
}

/* Search input enhancement removed - using global styles for consistency */

/* Empty state styling */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary);
}

.empty-state i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

@media (max-width: 768px) {
    .artist-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }

    .artist-info {
        padding: 15px;
    }

    .filter-bar {
        padding: 15px;
    }

    .filter-tags {
        gap: 8px;
    }

    .filter-tag {
        padding: 5px 10px;
        font-size: 0.75rem;
    }

    .loading-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
}</pre></body></html>