<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**
 * Swiper Cards Component Styles
 * Extracted from BlazinStreetz inline CSS
 * 
 * Breakpoints:
 * - Desktop: Default styles
 * - Tablet: max-width: 768px
 * - Mobile: max-width: 576px
 * 
 * Hover capabilities:
 * - hover: hover (desktop with mouse)
 * - hover: none (touch devices)
 * 
 * Recent Updates:
 * - 2025-07-20: Fixed slide-info height consistency issue
 *   - Implemented fixed heights: 120px (desktop), 100px (tablet), 85px (mobile)
 *   - Adjusted typography to prevent text clipping
 *   - Changed from justify-content: space-between to flex-start
 *   - Reduced padding, font-sizes, line-heights, and margins
 */

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

/* Slide Card Container */
.slide-card {
    background-color: var(--background-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Hover effects only on non-touch devices */
@media (hover: hover) {
    .slide-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
}

/* Touch-friendly styles for mobile devices */
@media (hover: none) {
    .slide-card:active {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
}

/* Slide Cover Image Container */
.slide-cover {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

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

/* Aspect Ratio Variations */
.top-picks-card .slide-cover {
    aspect-ratio: 16/9;
}

.artist-card .slide-cover {
    aspect-ratio: 16/9;
}

.video-card .slide-cover {
    aspect-ratio: 16/9;
}

/* Play Button Overlay */
.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;
    /* Ensure touch interactions work properly */
    touch-action: manipulation;
}

/* Desktop hover behavior - only on devices with hover capability */
@media (hover: hover) {
    .slide-card:hover .slide-play-overlay {
        opacity: 1;
    }
}

/* Mobile/touch behavior - completely remove overlay to prevent touch conflicts */
@media (hover: none) {
    .slide-play-overlay {
        display: none !important;
    }
}

/* Play Button */
.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;
    /* Ensure proper touch interaction */
    touch-action: manipulation;
    /* WCAG 2.1 minimum touch target size */
    min-width: 44px;
    min-height: 44px;
}

/* Desktop hover effects */
@media (hover: hover) {
    .slide-play-btn:hover {
        background-color: #ff1a1a;
        transform: scale(1.1);
    }
}

/* Mobile touch effects */
@media (hover: none) {
    .slide-play-btn:active {
        background-color: #cc0000;
        transform: scale(0.95);
    }
}

/* Slide Info Section */
.slide-info {
    padding: 12px 20px; /* Reduced vertical padding */
    height: 120px; /* Fixed height for consistency */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Changed to flex-start for better control */
    align-items: stretch;
    overflow: hidden; /* Prevent visual overflow */
    box-sizing: border-box; /* Ensure padding is included in height */
}

/* Slide Title */
.slide-title {
    font-size: 1.1rem; /* Slightly reduced */
    font-weight: 600;
    line-height: 1.2; /* Tighter line height */
    margin-bottom: 4px; /* Reduced margin */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Slide Artist */
.slide-artist {
    color: var(--text-secondary);
    font-size: 0.9rem; /* Slightly reduced */
    line-height: 1.3; /* Tighter line height */
    margin-bottom: 6px; /* Reduced margin */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    /* Adjusted for new line height */
    max-height: 2.34rem; /* 2 lines Ã— 1.3 line-height Ã— 0.9rem */
}

/* Slide Stats (Hidden by default) */
.slide-stats {
    display: none !important;
}

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

/* Artist Card Specific Styles */
.artist-card .slide-info {
    height: 90px; /* Fixed height for consistency */
    padding: 10px 20px; /* Reduced vertical padding */
}

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

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

/* DJ Spotlight Card Specific Styles */
.dj-spotlight-card .slide-info {
    height: 90px; /* Fixed height for consistency */
    padding: 10px 20px; /* Reduced vertical padding */
}

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

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

/* Video Card Specific Styles */
.video-duration {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 500;
    z-index: 2;
}

.video-card .slide-stats {
    justify-content: space-between;
}

.video-card .slide-stats span:last-child {
    color: #dc3545;
    font-weight: 500;
}

/* Explicit Badge */
.explicit-badge {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 4px;
    border-radius: 2px;
    line-height: 1;
    flex-shrink: 0;
}

/* Desktop tooltip for explicit badge */
@media (hover: hover) {
    .explicit-badge {
        position: relative;
        cursor: help;
    }
    
    .explicit-badge::after {
        content: attr(data-tooltip);
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%);
        background-color: rgba(0, 0, 0, 0.9);
        color: white;
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 12px;
        white-space: nowrap;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: 1000;
    }
    
    .explicit-badge:hover::after {
        opacity: 1;
    }
}

/* Global Touch Enhancements */
.slide-link {
    /* Ensure links are properly clickable on touch */
    touch-action: manipulation;
    /* Prevent 300ms delay on mobile */
    -webkit-tap-highlight-color: transparent;
}

/* Prevent zoom on fast taps */
@media (hover: none) {
    .slide-card,
    .slide-play-btn,
    .slide-link {
        -webkit-tap-highlight-color: rgba(220, 53, 69, 0.1);
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
    }
}

/* Link Styles */
.carousel-slide-link,
.slide-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

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

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

/* ========================================
   STICKY PLAYER CONTEXT STYLES
   ======================================== */

/* When sticky player is enabled, ensure styles still apply */
body.sticky-player-enabled .slide-card {
    background-color: var(--background-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

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

body.sticky-player-enabled .slide-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body.sticky-player-enabled .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;
}

body.sticky-player-enabled .slide-card:hover .slide-play-overlay {
    opacity: 1;
}

body.sticky-player-enabled .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;
}

body.sticky-player-enabled .slide-play-btn:hover {
    background-color: #ff1a1a;
    transform: scale(1.1);
}

body.sticky-player-enabled .slide-info {
    padding: 12px 20px; /* Reduced vertical padding */
    height: 120px; /* Fixed height for consistency */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    box-sizing: border-box;
}

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

body.sticky-player-enabled .slide-artist {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

body.sticky-player-enabled .slide-stats {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

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

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

/* Tablet Styles (max-width: 768px) */
@media (max-width: 768px) {
    .slide-info {
        padding: 10px 15px; /* Reduced vertical padding */
        height: 100px; /* Fixed height for consistency */
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        overflow: hidden;
        box-sizing: border-box;
    }

    .slide-title {
        font-size: 0.95rem;
        line-height: 1.2; /* Tighter line height */
        margin-bottom: 3px; /* Reduced margin */
    }

    .slide-artist {
        font-size: 0.8rem;
        line-height: 1.25; /* Tighter line height */
        margin-bottom: 4px; /* Reduced margin */
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        /* Adjusted for new line height */
        max-height: 2rem; /* 2 lines Ã— 1.25 line-height Ã— 0.8rem */
    }

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

    .video-duration {
        font-size: 0.7rem;
        padding: 1px 5px;
        bottom: 6px;
        right: 6px;
    }

    /* Artist Card Responsive */
    .artist-card .slide-info {
        height: 75px; /* Fixed height for consistency */
        padding: 12px 15px;
    }
    
    /* DJ Spotlight Card Responsive */
    .dj-spotlight-card .slide-info {
        height: 75px; /* Fixed height for consistency */
        padding: 10px 15px;
    }
}

/* Mobile Styles (max-width: 576px) */
@media (max-width: 576px) {
    .slide-info {
        padding: 8px 12px; /* Reduced vertical padding */
        height: 85px; /* Fixed height for consistency */
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        overflow: hidden;
        box-sizing: border-box;
    }

    .slide-title {
        font-size: 0.85rem; /* Slightly smaller for mobile */
        line-height: 1.2; /* Tighter line height */
        margin-bottom: 2px; /* Minimal margin */
    }

    .slide-artist {
        font-size: 0.75rem;
        line-height: 1.2; /* Tighter line height */
        margin-bottom: 3px; /* Minimal margin */
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        /* Adjusted for new line height */
        max-height: 1.8rem; /* 2 lines Ã— 1.2 line-height Ã— 0.75rem */
    }

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

    .video-duration {
        font-size: 0.65rem;
        padding: 1px 4px;
        bottom: 4px;
        right: 4px;
    }

    /* Artist Card Mobile */
    .artist-card .slide-info {
        height: 65px; /* Fixed height for consistency */
        padding: 8px 12px;
    }
    
    .artist-card .slide-title {
        margin-bottom: 0;
        line-height: 1.2;
    }
    
    /* DJ Spotlight Card Mobile */
    .dj-spotlight-card .slide-info {
        height: 65px; /* Fixed height for consistency */
        padding: 8px 12px;
    }
    
    .dj-spotlight-card .slide-title {
        margin-bottom: 5px;
        line-height: 1.2;
    }
}</pre></body></html>