/* Originals Catalog Page Styles - Иммерсивный минимализм */

/* Hero Section - Originals */
.originals-hero {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.12);
}

.originals-icon {
    font-size: 1.5rem;
    opacity: 0.95;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.originals-icon:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.2);
}

.originals-main-title {
    font-size: 1.125rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.originals-subtitle {
    font-size: 0.813rem;
    opacity: 0.9;
    font-weight: 400;
}

/* Hero Section - Covers */
.covers-hero {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.12);
}

.covers-icon {
    font-size: 1.5rem;
    opacity: 0.95;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.covers-icon:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.2);
}

.covers-main-title {
    font-size: 1.125rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.covers-subtitle {
    font-size: 0.813rem;
    opacity: 0.9;
    font-weight: 400;
}

/* Hero Search Box - New Styles for Search in Hero */
.hero-search-box {
    position: relative;
    width: 100%;
}

.hero-search-input {
    width: 100%;
    padding: 0.625rem 2.5rem 0.625rem 2.25rem;
    font-size: 0.813rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    outline: none;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    color: #1f2937;
}

.hero-search-input::placeholder {
    color: #6b7280;
    opacity: 0.8;
}

.hero-search-input:focus {
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    background: white;
}

.hero-search-icon {
    position: absolute;
    left: 0.875rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    font-size: 0.875rem;
    pointer-events: none;
}

.hero-search-clear {
    position: absolute;
    right: 0.875rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6b7280;
    font-size: 0.875rem;
    cursor: pointer;
    display: none;
    padding: 0.25rem;
    transition: color 0.2s ease;
}

.hero-search-clear:hover {
    color: #3b82f6;
}

.hero-search-clear.show {
    display: block;
}

/* Author Avatar in Hero Section */
.author-avatar-hero {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.author-avatar-hero:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.35);
}

/* Back Link for Catalog Pages (inside hero) */
.back-link-catalog {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.back-link-catalog:hover {
    color: white;
    gap: 0.5rem !important;
}

.back-link-catalog i {
    font-size: 1rem;
    transition: transform 0.2s ease;
}

.back-link-catalog:hover i {
    transform: translateX(-3px);
}

/* Back Link Outside Hero Block */
.back-link-outside {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.back-link-outside:hover {
    color: var(--secondary-color);
    gap: 0.5rem !important;
}

.back-link-outside i {
    font-size: 1rem;
    transition: transform 0.2s ease;
}

.back-link-outside:hover i {
    transform: translateX(-3px);
}

/* Old Hero Section - Keep for author pages compatibility */
.hero-section {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    padding: 2.5rem 0;
    color: white;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hero-title i {
    font-size: 1.5rem;
}

.hero-subtitle {
    font-size: 0.95rem;
    opacity: 0.95;
    margin-bottom: 1.5rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 1.5rem;
}

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

.stat-number {
    font-size: 1.75rem;
    font-weight: 600;
    display: block;
}

.stat-label {
    font-size: 0.813rem;
    opacity: 0.95;
}

/* Search Section */
.search-section {
    margin-bottom: 1rem;
}

.search-box {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

/* Filters Section - Новый стиль как на Чартах */
.filters-section {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

/* Filter Block - Individual blocks for filter and sort */
.filter-block {
    background: white;
    border-radius: 8px;
    padding: 0.5rem 0.625rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.filter-block:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.filter-label {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 600;
    color: #334155;
    font-size: 0.688rem;
    margin-bottom: 0.375rem !important;
}

.filter-label i {
    color: #3b82f6;
    font-size: 0.75rem;
}

.genre-filters {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.375rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 #f1f5f9;
}

.genre-filters::-webkit-scrollbar {
    height: 4px;
}

.genre-filters::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 2px;
}

.genre-filters::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 2px;
}

.genre-filters::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

.genre-badge {
    display: inline-block;
    padding: 0.2rem 0.5rem;
    background: #f1f5f9;
    color: #475569;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.688rem;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    white-space: nowrap;
}

.genre-badge:hover {
    background: #dbeafe;
    color: #3b82f6;
    border-color: #bfdbfe;
    transform: translateY(-1px);
}

.genre-badge.active {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 1px 4px rgba(59, 130, 246, 0.25);
}

/* Старые стили для совместимости */
.filters-section .form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.filters-section .form-select {
    border-radius: 8px;
    border: 1px solid var(--border-color);
    padding: 0.625rem 0.75rem;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.filters-section .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.search-input {
    width: 100%;
    padding: 0.75rem 3rem 0.75rem 2.5rem;
    font-size: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    outline: none;
    transition: all 0.2s ease;
    background: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.search-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.15);
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1rem;
}

.search-clear {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1rem;
    cursor: pointer;
    display: none;
    padding: 0.25rem;
}

.search-clear:hover {
    color: var(--primary-color);
}

.search-clear.show {
    display: block;
}

/* Authors Grid */
.authors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.author-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.625rem 0.75rem;
    transition: all 0.2s ease;
    cursor: pointer;
}

.author-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-color: var(--primary-color);
}

.author-header {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}

.author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.938rem;
    font-weight: 600;
    margin-right: 0.625rem;
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
    margin-bottom: 0.125rem;
}

.author-count {
    color: var(--text-muted);
    font-size: 0.688rem;
    margin: 0;
}

.author-arrow {
    color: var(--text-muted);
    font-size: 1rem;
    margin-left: 0.5rem;
    transition: transform 0.2s ease;
}

.author-card:hover .author-arrow {
    transform: translateX(4px);
    color: var(--primary-color);
}

.originals-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.original-item {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s ease;
}

.original-item:hover {
    padding-left: 0.4rem;
    color: var(--primary-color);
}

.original-item:last-child {
    border-bottom: none;
}

.original-title {
    font-weight: 500;
    color: var(--dark-color);
    margin: 0;
    flex: 1;
    font-size: 0.875rem;
}

.original-meta {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.covers-badge {
    background: #eff6ff;
    color: var(--secondary-color);
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    font-size: 0.688rem;
    font-weight: 600;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem 2rem;
}

.empty-icon {
    font-size: 3rem;
    color: #d1d5db;
    margin-bottom: 0.75rem;
}

.empty-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.empty-text {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Alphabet Navigation */
.alphabet-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 16px;
}

.alphabet-letter {
    display: inline-block;
    padding: 0.5rem 0.75rem;
    color: #64748b;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.alphabet-letter:hover,
.alphabet-letter.active {
    background: var(--primary-color);
    color: white;
}

.alphabet-letter.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Compact Hero Section Styles for Author Pages */
.hero-section.hero-compact {
    padding: 1.25rem 0;
}

.hero-content {
    max-width: 100%;
}

.author-header-compact {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.75rem;
}

.author-avatar-compact {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.author-info-compact {
    flex: 1;
}

.hero-title-compact {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    color: white;
}

.author-stats-compact {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.stat-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    color: white;
    backdrop-filter: blur(10px);
}

.stat-badge i {
    font-size: 1rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s;
    padding: 0.25rem 0;
}

.back-link:hover {
    color: white;
    gap: 0.75rem;
}

.back-link i {
    font-size: 1.1rem;
}

/* Filters Section Override for Author Pages */
.filters-section.filters-compact {
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}

/* Originals Grid for Author Pages */
.originals-list-view {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 0.75rem;
    margin-top: 0;
}

.original-card-view {
    background: white;
    border-radius: 8px;
    padding: 0.875rem 1rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #e5e7eb;
}

.original-card-view:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    border-color: #3b82f6;
}

.original-card-view h4 {
    font-size: 0.938rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
    line-height: 1.3;
}

.original-card-view .meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: #6b7280;
}

.original-card-view .meta-info span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.original-card-view .meta-info i {
    font-size: 0.688rem;
}

/* Original Card Content - для размещения кнопки Play/Pause */
.original-card-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.original-card-content a {
    flex: 1;
}

/* Audio Play Button */
.audio-play-btn {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.audio-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.4);
}

.audio-play-btn:active {
    transform: scale(0.95);
}

.audio-play-btn i {
    font-size: 1rem;
    transition: all 0.2s ease;
}

/* Playing Animation - Pulse effect */
@keyframes audioPulse {
    0% {
        box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(59, 130, 246, 0.6),
                    0 0 0 4px rgba(59, 130, 246, 0.2);
    }
    100% {
        box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
    }
}

.audio-play-btn.playing {
    animation: audioPulse 1.5s cubic-bezier(0.4, 0.0, 0.2, 1) infinite;
}

/* Covers Page - оранжевая кнопка для каверов */
.covers-page .audio-play-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.covers-page .audio-play-btn:hover {
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.4);
}

/* Playing Animation for Covers - Orange Pulse */
@keyframes audioPulseOrange {
    0% {
        box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(255, 107, 53, 0.6),
                    0 0 0 4px rgba(255, 107, 53, 0.2);
    }
    100% {
        box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
    }
}

.covers-page .audio-play-btn.playing {
    animation: audioPulseOrange 1.5s cubic-bezier(0.4, 0.0, 0.2, 1) infinite;
}

/* Covers Grid for Author Pages */
.covers-list-view {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 0.75rem;
    margin-top: 0;
}

.cover-card-view {
    background: white;
    border-radius: 8px;
    padding: 0.875rem 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04),
                0 1px 3px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.cover-card-view::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35 0%, #f7931e 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cover-card-view:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06),
                0 3px 12px rgba(0, 0, 0, 0.04);
    border-color: #ff6b35;
}

.cover-card-view:hover::before {
    opacity: 1;
}

.cover-card-view > a {
    flex: 1;
    min-width: 0;
}

/* Audio Player Button - Оранжевые фирменные цвета Кавера для страниц каверов */
.covers-page .cover-card-view .audio-play-btn {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.covers-page .cover-card-view .audio-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.4);
}

.covers-page .cover-card-view .audio-play-btn:active {
    transform: scale(0.95);
}

.covers-page .cover-card-view .audio-play-btn i {
    font-size: 1rem;
    transition: all 0.2s ease;
}

/* Playing Animation - Pulse effect с оранжевыми цветами */
@keyframes audioPulse {
    0% {
        box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
    }
    50% {
        box-shadow: 0 4px 20px rgba(255, 107, 53, 0.6),
                    0 0 0 4px rgba(255, 107, 53, 0.1);
    }
    100% {
        box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
    }
}

.covers-page .cover-card-view .audio-play-btn.playing {
    animation: audioPulse 1.5s cubic-bezier(0.4, 0.0, 0.2, 1) infinite;
}

.cover-card-view h4 {
    font-size: 0.938rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
    line-height: 1.3;
}

.cover-card-view .meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: #6b7280;
}

.cover-card-view .meta-info span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.cover-card-view .meta-info i {
    font-size: 0.688rem;
}

/* Breadcrumb Styles */
.breadcrumb {
    background: white;
    border-radius: 8px;
    padding: 0.625rem 1rem;
    margin-bottom: 0;
    font-size: 0.813rem;
}

.breadcrumb-item {
    color: #6b7280;
}

.breadcrumb-item a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.breadcrumb-item a:hover {
    color: #2563eb;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #1f2937;
    font-weight: 500;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #cbd5e1;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .originals-main-title,
    .covers-main-title {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .originals-hero,
    .covers-hero {
        padding: 0.75rem 0;
    }

    .originals-hero .row,
    .covers-hero .row {
        row-gap: 0.75rem;
    }

    .originals-icon,
    .covers-icon {
        font-size: 1.25rem;
        width: 32px;
        height: 32px;
    }

    .originals-main-title,
    .covers-main-title {
        font-size: 0.95rem;
    }

    .originals-subtitle,
    .covers-subtitle {
        font-size: 0.75rem;
    }

    .hero-search-box {
        margin-top: 0;
    }

    .hero-search-input {
        font-size: 0.75rem;
        padding: 0.5rem 2.25rem 0.5rem 2rem;
    }

    .hero-search-icon {
        left: 0.75rem;
        font-size: 0.813rem;
    }

    .hero-search-clear {
        right: 0.75rem;
        font-size: 0.813rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-section {
        padding: 2rem 0;
    }

    .hero-section.hero-compact {
        padding: 1rem 0;
    }

    .hero-stats {
        flex-direction: column;
        gap: 0.75rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .authors-grid {
        grid-template-columns: 1fr;
    }

    .author-header-compact {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .hero-title-compact {
        font-size: 1.25rem;
    }

    .author-avatar-compact {
        width: 44px;
        height: 44px;
        font-size: 1.25rem;
    }

    .originals-list-view,
    .covers-list-view {
        grid-template-columns: 1fr;
    }

    .author-avatar-hero {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .back-link-catalog {
        font-size: 0.813rem;
    }

    .back-link-catalog i {
        font-size: 0.875rem;
    }

    .back-link-outside {
        font-size: 0.813rem;
        margin-top: 0.75rem !important;
        margin-bottom: 0.5rem !important;
    }

    .back-link-outside i {
        font-size: 0.875rem;
    }

    .breadcrumb {
        font-size: 0.75rem;
        padding: 0.5rem 0.75rem;
    }

    .genre-badge {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }

    .filter-label {
        font-size: 0.7rem;
    }

    /* Audio Play Button - Mobile */
    .audio-play-btn {
        width: 2rem;
        height: 2rem;
    }

    .audio-play-btn i {
        font-size: 0.875rem;
    }
}

/* ========================================
   COVERS PAGE SPECIFIC STYLES (ORANGE)
   ======================================== */

/* Orange theme for Covers Catalog and Author Covers pages */

.covers-page .covers-hero {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.12);
}

/* Hero Player Container */
.covers-page .hero-player-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* Orange Playlist Button for Covers Page */
.covers-page .covers-play-all-btn.audio-play-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%) !important;
    color: white;
    border: none;
    border-radius: 8px !important;
    font-weight: 700;
    font-size: 0.813rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(255, 107, 53, 0.35),
                0 2px 6px rgba(255, 107, 53, 0.2);
    white-space: nowrap;
    min-width: fit-content;
    width: auto !important;
    height: auto !important;
    position: relative;
}

/* Remove oval inside button */
.covers-page .covers-play-all-btn.audio-play-btn::before {
    display: none;
}

.covers-page .covers-play-all-btn.audio-play-btn:hover {
    background: linear-gradient(135deg, #f7931e 0%, #ea7a2a 100%) !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.45),
                0 3px 10px rgba(255, 107, 53, 0.3) !important;
}

.covers-page .covers-play-all-btn.audio-play-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 12px rgba(255, 107, 53, 0.4) !important;
}

/* Orange pulse animation for playing state */
.covers-page .covers-play-all-btn.audio-play-btn.playing {
    animation: orangeHeroPlayPulse 1.8s cubic-bezier(0.4, 0.0, 0.2, 1) infinite !important;
}

@keyframes orangeHeroPlayPulse {
    0% {
        box-shadow: 0 4px 14px rgba(255, 107, 53, 0.35),
                    0 2px 6px rgba(255, 107, 53, 0.2);
    }
    50% {
        box-shadow: 0 8px 32px rgba(255, 107, 53, 0.65),
                    0 4px 18px rgba(255, 107, 53, 0.45),
                    0 0 0 12px rgba(255, 107, 53, 0.12);
        transform: translateY(-2px);
    }
    100% {
        box-shadow: 0 4px 14px rgba(255, 107, 53, 0.35),
                    0 2px 6px rgba(255, 107, 53, 0.2);
    }
}

.covers-page .covers-play-all-btn.audio-play-btn i {
    font-size: 1rem !important;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.covers-page .covers-play-all-btn.audio-play-btn span {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .covers-page .hero-player-container {
        justify-content: flex-start;
        margin-top: 0.75rem;
    }

    .covers-page .covers-play-all-btn.audio-play-btn {
        width: 100% !important;
        justify-content: center;
        padding: 0.5rem 1rem !important;
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }

    .covers-page .covers-play-all-btn.audio-play-btn span {
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .covers-page .covers-play-all-btn.audio-play-btn i {
        font-size: 0.938rem !important;
    }
}

/* Orange Audio Play Button for Cover Cards */
.covers-page .audio-play-btn {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    box-shadow: 0 2px 6px rgba(255, 107, 53, 0.25),
                0 1px 3px rgba(255, 107, 53, 0.15);
}

/* Only apply ::before to non-playlist buttons */
.covers-page .audio-play-btn:not(.covers-play-all-btn)::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255,255,255,0.4), rgba(255,255,255,0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.covers-page .audio-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 12px rgba(255, 107, 53, 0.35),
                0 2px 6px rgba(255, 107, 53, 0.2);
}

/* Orange Playing Animation */
@keyframes orangeAudioPulse {
    0% {
        box-shadow: 0 4px 16px rgba(255, 107, 53, 0.35),
                    0 2px 8px rgba(255, 107, 53, 0.2);
    }
    50% {
        box-shadow: 0 6px 28px rgba(255, 107, 53, 0.6),
                    0 3px 14px rgba(255, 107, 53, 0.4),
                    0 0 0 8px rgba(255, 107, 53, 0.1);
    }
    100% {
        box-shadow: 0 4px 16px rgba(255, 107, 53, 0.35),
                    0 2px 8px rgba(255, 107, 53, 0.2);
    }
}

.covers-page .audio-play-btn.playing {
    animation: orangeAudioPulse 1.5s cubic-bezier(0.4, 0.0, 0.2, 1) infinite;
}

/* Orange accent for cover cards */
.covers-page .chart-cover-card::before {
    background: linear-gradient(90deg, #ff6b35 0%, #f7931e 100%);
}

.covers-page .cover-original {
    background: rgba(255, 107, 53, 0.06);
    border-left-color: #ff6b35;
}

.covers-page .cover-original:hover {
    background: rgba(255, 107, 53, 0.1);
    border-left-color: #f7931e;
}

.covers-page .cover-original i {
    color: #ff6b35;
}

.covers-page .cover-original a:hover {
    color: #ff6b35;
}

.covers-page .filter-label i {
    color: #ff6b35;
}

.covers-page .genre-badge:hover {
    background: #ffedd5;
    color: #ff6b35;
    border-color: #fdba74;
}

.covers-page .genre-badge.active {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    box-shadow: 0 1px 4px rgba(255, 107, 53, 0.25);
}

.covers-page .author-avatar {
    background: linear-gradient(135deg, #ff6b35 0%, #fb923c 100%);
}

.covers-page .covers-badge {
    background: #fff7ed;
    color: #f7931e;
}

.covers-page .hero-search-clear:hover {
    color: #ff6b35;
}

.covers-page .search-clear:hover {
    color: #ff6b35;
}

.covers-page .author-card:hover {
    border-color: #ff6b35;
}

.covers-page .author-card:hover .author-arrow {
    color: #ff6b35;
}

.covers-page .alphabet-letter:hover,
.covers-page .alphabet-letter.active {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.covers-page .breadcrumb-item a {
    color: #ff6b35;
}

.covers-page .breadcrumb-item a:hover {
    color: #f7931e;
}

/* ========================================
   ORIGINALS PAGE HERO PLAYLIST BUTTON (BLUE)
   ======================================== */

/* Hero Player Container for Originals */
.hero-player-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* Blue Playlist Button for Originals Page */
.originals-play-all-btn.audio-play-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%) !important;
    color: white;
    border: none;
    border-radius: 8px !important;
    font-weight: 700;
    font-size: 0.813rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.35),
                0 2px 6px rgba(59, 130, 246, 0.2);
    white-space: nowrap;
    min-width: fit-content;
    width: auto !important;
    height: auto !important;
    position: relative;
}

/* Remove oval inside button */
.originals-play-all-btn.audio-play-btn::before {
    display: none;
}

.originals-play-all-btn.audio-play-btn:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%) !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.45),
                0 3px 10px rgba(59, 130, 246, 0.3) !important;
}

.originals-play-all-btn.audio-play-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 12px rgba(59, 130, 246, 0.4) !important;
}

/* Blue pulse animation for playing state */
.originals-play-all-btn.audio-play-btn.playing {
    animation: blueHeroPlayPulse 1.8s cubic-bezier(0.4, 0.0, 0.2, 1) infinite !important;
}

@keyframes blueHeroPlayPulse {
    0% {
        box-shadow: 0 4px 14px rgba(59, 130, 246, 0.35),
                    0 2px 6px rgba(59, 130, 246, 0.2);
    }
    50% {
        box-shadow: 0 8px 32px rgba(59, 130, 246, 0.65),
                    0 4px 18px rgba(59, 130, 246, 0.45),
                    0 0 0 12px rgba(59, 130, 246, 0.12);
        transform: translateY(-2px);
    }
    100% {
        box-shadow: 0 4px 14px rgba(59, 130, 246, 0.35),
                    0 2px 6px rgba(59, 130, 246, 0.2);
    }
}

.originals-play-all-btn.audio-play-btn i {
    font-size: 1rem !important;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.originals-play-all-btn.audio-play-btn span {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .hero-player-container {
        justify-content: flex-start;
        margin-top: 0.75rem;
    }

    .originals-play-all-btn.audio-play-btn {
        width: 100% !important;
        justify-content: center;
        padding: 0.5rem 1rem !important;
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }

    .originals-play-all-btn.audio-play-btn span {
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .originals-play-all-btn.audio-play-btn i {
        font-size: 0.938rem !important;
    }
}

/* Author Description Section - Collapsible */
.author-description-section {
    margin-bottom: 2rem;
}

.author-description-block {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.author-description-block.collapsible {
    padding: 0;
}

.author-description-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.author-description-toggle:hover {
    background: #f8fafc;
}

.author-description-toggle:focus {
    outline: none;
    box-shadow: inset 0 0 0 2px rgba(59, 130, 246, 0.3);
}

.author-description-title {
    font-size: 0.938rem;
    font-weight: 600;
    color: #1f2937;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.author-description-title i {
    color: #3b82f6;
    font-size: 1rem;
}

.toggle-icon {
    color: #6b7280;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.author-description-toggle[aria-expanded="true"] .toggle-icon {
    transform: rotate(180deg);
}

.author-description-text {
    padding: 0.75rem 1.25rem 1rem;
    font-size: 0.875rem;
    line-height: 1.7;
    color: #4b5563;
}

.author-description-text p {
    margin-bottom: 0.75rem;
}

.author-description-text p:last-child {
    margin-bottom: 0;
}

.author-description-text strong,
.author-description-text b {
    font-weight: 600;
    color: #1f2937;
}

.author-description-text em,
.author-description-text i:not(.bi) {
    font-style: italic;
}

.author-description-text a {
    color: #3b82f6;
    text-decoration: none;
}

.author-description-text a:hover {
    text-decoration: underline;
}

.author-description-text ul,
.author-description-text ol {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
}

.author-description-text li {
    margin-bottom: 0.25rem;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .author-description-toggle {
        padding: 0.875rem 1rem;
    }

    .author-description-title {
        font-size: 0.875rem;
    }

    .author-description-text {
        padding: 0 1rem 0.875rem;
        font-size: 0.813rem;
    }
}
