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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #dc3545;
    --accent-color: #dc3545;
    --secondary-color: #191414;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --background-dark: #121212;
    --background-light: #282828;
    --hover-color: #1ed760;
    --transition-speed: 0.3s;
    --search-icon-color: #a0a0a0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--background-dark);
    color: var(--text-primary);
    overflow-x: hidden;
}


/* Side Navigation */

.side-nav {
    position: fixed;
    left: -250px;
    top: 0;
    width: 250px;
    height: 100vh;
    background-color: var(--secondary-color);
    transition: left var(--transition-speed) ease;
    z-index: 1000;
    overflow-y: auto;
}

.side-nav.active {
    left: 0;
}

.nav-header {
    padding: 20px;
    text-align: center;
    position: relative;
}

.nav-logo {
    width: 120px;
    height: auto;
}

.close-nav {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
}

.nav-links {
    list-style: none;
    padding: 20px 0;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-speed);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
    background-color: var(--background-light);
    border-left: 3px solid red;
}

.nav-links i {
    margin-right: 15px;
    width: 20px;
}


/* Main Content */

.main-content {
    transition: margin-left var(--transition-speed) ease;
    min-height: 100vh;
}


/* Top Header */

.top-header {
    position: sticky;
    top: 0;
    background-color: var(--background-dark);
    padding: 15px 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hamburger {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}

.mobile-logo {
    height: 35px;
    width: auto;
}

.search-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--search-icon-color);
    z-index: 10;
    pointer-events: none;
    font-size: 16px;
}

.search-input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: none;
    border-radius: 25px;
    background-color: var(--background-light);
    color: var(--text-primary);
    font-size: 14px;
    outline: none;
    transition: background-color var(--transition-speed);
}

.search-input:focus {
    background-color: #333;
}

.search-input::placeholder {
    color: var(--text-secondary);
}


/* Typeahead Styles */

.tt-menu {
    background-color: var(--background-light);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    margin-top: 5px;
    max-height: 300px;
    overflow-y: auto;
}

.tt-suggestion {
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color var(--transition-speed);
}

.tt-suggestion:hover {
    background-color: var(--background-dark);
}

/* Enhanced Artist Typeahead Styles */
.artist-search-menu {
    min-width: 100%;
    width: auto;
}

.artist-typeahead-suggestion {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    position: relative;
}

.artist-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.2s ease;
}

.artist-typeahead-suggestion:hover .artist-avatar {
    border-color: var(--accent-color);
}

.artist-info {
    flex: 1;
    min-width: 0;
}

.artist-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.artist-meta {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dj-badge {
    position: absolute;
    top: 8px;
    right: 12px;
    background: linear-gradient(45deg, #ff6b35, #dc3545);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile Optimization for Artist Typeahead */
@media (max-width: 768px) {
    .artist-typeahead-suggestion {
        padding: 16px;
        gap: 16px;
        min-height: 64px; /* WCAG 2.1 touch target */
    }
    
    .artist-avatar {
        width: 48px;
        height: 48px;
    }
    
    .artist-name {
        font-size: 15px;
        margin-bottom: 4px;
    }
    
    .artist-meta {
        font-size: 13px;
    }
    
    .dj-badge {
        top: 12px;
        right: 16px;
        padding: 4px 8px;
        font-size: 11px;
    }
}

/* Keyboard Navigation Enhancement */
.tt-suggestion.tt-cursor .artist-name {
    color: white;
}

.tt-suggestion.tt-cursor .artist-meta {
    color: rgba(255, 255, 255, 0.8);
}


/* Hero Section */

.hero-section {
    margin-bottom: 40px;
}

.carousel-item img {
    height: 400px;
    object-fit: cover;
}

.carousel-caption {
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
    width: 100%;
    left: 0;
    bottom: 0;
    padding: 40px 20px 20px;
    text-align: left;
}

.carousel-caption h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.carousel-caption p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
}


/* Content Sections */

.content-sections {
    padding: 20px;
}

.content-row {
    margin-bottom: 50px;
}

.section-title {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3px;
}

.section-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    opacity: 0.8;
}


/* Swiper Styles */

.albumSwiper {
    padding: 0 50px;
    /* Improve touch responsiveness */
    touch-action: pan-y pinch-zoom;
}

.swiper-slide {
    text-align: center;
    /* Enable smooth touch interactions */
    touch-action: manipulation;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

/* Desktop hover effects for Swiper images */
@media (hover: hover) {
    .swiper-slide:hover img {
        transform: scale(1.05);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    }
}

/* Touch-friendly effects for mobile */
@media (hover: none) {
    .swiper-slide:active img {
        transform: scale(1.02);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--text-primary);
    background-color: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    /* Ensure proper touch interaction */
    touch-action: manipulation;
    /* WCAG 2.1 minimum touch target size */
    min-width: 44px;
    min-height: 44px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
}


/* Audio Player Page Styles */

.player-container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
}

.album-art-large {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 30px;
    border-radius: 12px;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
}

.track-info {
    text-align: center;
    margin-bottom: 30px;
}

.track-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.track-artist {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.amplitude-player {
    background-color: var(--background-light);
    border-radius: 12px;
    padding: 30px;
}


/* Grid Layouts for Category Pages */

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
}

.grid-item {
    background-color: var(--background-light);
    border-radius: 8px;
    padding: 15px;
    transition: transform var(--transition-speed), background-color var(--transition-speed);
    cursor: pointer;
    /* Enable smooth touch interactions */
    touch-action: manipulation;
}

/* Desktop hover effects */
@media (hover: hover) {
    .grid-item:hover {
        transform: translateY(-5px);
        background-color: #333;
    }
}

/* Mobile touch effects */
@media (hover: none) {
    .grid-item:active {
        transform: translateY(-2px);
        background-color: #333;
    }
}

.grid-item img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}

.grid-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.grid-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}


/* Utility Classes */

.text-center {
    text-align: center;
}

.mt-3 {
    margin-top: 1rem;
}

.mb-3 {
    margin-bottom: 1rem;
}

.p-3 {
    padding: 1rem;
}


/* Scrollbar Styling */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--background-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Enhanced Search Styles */
.search-results-container {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--background-light);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    max-height: 500px;
    overflow-y: auto;
    z-index: 1000;
    margin-top: 8px;
}

.search-results-header {
    padding: 20px 20px 10px 20px;
    border-bottom: 1px solid #333;
}

.search-results-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.result-count {
    color: var(--text-secondary);
    font-weight: normal;
}

.search-filter-tabs {
    display: flex;
    gap: 5px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 6px 12px;
    background: transparent;
    border: 1px solid #333;
    border-radius: 20px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.search-results-list {
    padding: 10px 0;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.search-result-item:hover {
    background: var(--background-dark);
    border-left-color: var(--accent-color);
}

.result-image {
    width: 60px;
    height: 60px;
    position: relative;
    margin-right: 15px;
    flex-shrink: 0;
}

.result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.result-type-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: var(--accent-color);
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 10px;
    text-transform: uppercase;
    font-weight: bold;
}

.result-info {
    flex: 1;
    min-width: 0;
    margin-right: 15px;
}

.result-title {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.3;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.result-subtitle {
    color: var(--text-secondary);
    font-size: 0.85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 6px;
}

.result-badges {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.result-badges .badge {
    background: #333;
    color: var(--text-secondary);
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: normal;
}

.result-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.result-actions button {
    width: 32px;
    height: 32px;
    border: none;
    background: var(--background-dark);
    color: var(--text-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.result-actions button:hover {
    background: var(--accent-color);
    color: white;
    transform: scale(1.1);
}

.search-loading {
    padding: 40px 20px;
    text-align: center;
    color: var(--text-secondary);
}

.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #333;
    border-radius: 50%;
    border-top-color: var(--accent-color);
    animation: spin 1s ease-in-out infinite;
    margin-bottom: 10px;
}

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

.search-no-results {
    padding: 40px 20px;
    text-align: center;
    color: var(--text-secondary);
}

.search-no-results i {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.5;
}

.search-no-results h3 {
    margin: 0 0 10px 0;
    color: var(--text-primary);
}

.search-suggestions {
    margin-top: 20px;
}

.suggestion-tag {
    display: inline-block;
    padding: 8px 12px;
    background: var(--background-dark);
    border: 1px solid #333;
    border-radius: 20px;
    margin: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

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

.search-error {
    padding: 40px 20px;
    text-align: center;
    color: var(--text-secondary);
}

.search-error i {
    font-size: 2rem;
    color: #dc3545;
    margin-bottom: 15px;
}

.search-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--background-light);
    border: 1px solid #333;
    border-radius: 8px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 9999;
}

.search-notification.show {
    transform: translateX(0);
}

.search-notification.success {
    border-left: 4px solid #28a745;
}

.search-notification.error {
    border-left: 4px solid #dc3545;
}

.search-notification i {
    color: #28a745;
}

.search-notification.error i {
    color: #dc3545;
}

/* Search highlighting */
mark {
    background: var(--accent-color);
    color: white;
    padding: 0 2px;
    border-radius: 2px;
}

/* Body class when search is active */
body.search-active {
    overflow: hidden;
}

body.search-active::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

/* Mobile responsive styles for search */
@media (max-width: 768px) {
    .search-results-container {
        position: fixed;
        top: 80px;
        left: 10px;
        right: 10px;
        max-height: calc(100vh - 100px);
        margin-top: 0;
    }
    
    .search-result-item {
        padding: 10px 15px;
    }
    
    .result-image {
        width: 50px;
        height: 50px;
        margin-right: 12px;
    }
    
    .result-title {
        font-size: 0.9rem;
    }
    
    .result-subtitle {
        font-size: 0.8rem;
    }
    
    .search-filter-tabs {
        gap: 3px;
    }
    
    .filter-tab {
        padding: 5px 10px;
        font-size: 0.8rem;
    }
    
    .search-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        transform: translateY(-100%);
    }
    
    .search-notification.show {
        transform: translateY(0);
    }
}

/* Video Link Styles - Fix anchor tag styling interference */
.video-link,
.video-link:hover,
.video-link:focus,
.video-link:visited,
.video-link:active {
    text-decoration: none !important;
    color: inherit !important;
}

.video-link .video-title,
.video-link .video-artist,
.video-link .video-stats,
.video-link .video-date {
    color: inherit;
    text-decoration: none;
}

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

.video-link:hover .video-artist {
    color: var(--text-secondary);
    text-decoration: none;
}

/* Ensure video card hover effects work properly with links */
.video-link:hover .video-card {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Override default video-card hover when inside a link */
.video-link .video-card:hover {
    transform: none;
    box-shadow: none;
}

/* Slide link styles for video components */
.slide-link,
.slide-link:hover,
.slide-link:focus,
.slide-link:visited,
.slide-link:active {
    text-decoration: none !important;
    color: inherit !important;
}

.slide-link .slide-title,
.slide-link .slide-artist,
.slide-link .slide-stats {
    color: inherit;
    text-decoration: none;
}

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

.slide-link:hover .slide-artist {
    color: var(--text-secondary);
    text-decoration: none;
}

/* Additional CSS Variables */
:root {
    --border-color: #333;
    --success-color: #28a745;
    --error-color: #dc3545;
}</pre></body></html>