:root {
    /* Основные цвета */
    --color-primary: #9e7967;
    --color-primary-light: #b69485;
    --color-secondary: #B8860B;
    --color-secondary-light: #d4a429;
    --color-dark: #1A1A1A;
    --color-dark-2: #242424;
    --color-dark-3: #2A2A2A;
    --color-light: #E5E5E5;
    --color-light-2: #D3D3D3;
    --color-muted: #8a8a8a;
    
    /* Градиенты */
    --gradient-accent: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--color-dark);
    color: var(--color-light);
    line-height: 1.6;
}

/* Хедер */
.header {
    background: var(--color-dark-2);
    border-bottom: 2px solid var(--color-primary);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.navbar {
    background: transparent;
    padding: 0;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary) !important;
    text-decoration: none;
}

.navbar-nav .nav-link {
    color: var(--color-light-2) !important;
    transition: all 0.3s ease;
    padding: 0.8rem 1rem !important;
    border-radius: 6px;
    margin: 0 0.2rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background: var(--color-primary);
    color: white !important;
}

/* Бургер-меню */
.navbar-toggler {
    border: 2px solid var(--color-primary);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(158, 121, 103, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%239e7967' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.5em;
    height: 1.5em;
}

.navbar-toggler:hover {
    background-color: rgba(158, 121, 103, 0.1);
    border-color: var(--color-primary-light);
}

/* Форма поиска в навигации */
.search-form {
    position: relative;
    flex-grow: 1;
    max-width: 300px;
}

.search-container {
    position: relative;
}

.search-input {
    width: 100%;
    padding: 0.6rem 3rem 0.6rem 1rem;
    background: var(--color-dark-3);
    border: 2px solid rgba(158, 121, 103, 0.3);
    border-radius: 25px;
    color: var(--color-light);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.2rem rgba(158, 121, 103, 0.25);
}

.search-input::placeholder {
    color: var(--color-muted);
}

.search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--color-muted);
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.search-btn:hover {
    color: var(--color-primary);
}

.search-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-dark-2);
    border: 1px solid rgba(158, 121, 103, 0.3);
    border-radius: 8px;
    margin-top: 0.5rem;
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
    display: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.search-dropdown.show {
    display: block;
}

.search-result {
    padding: 0.8rem 1rem;
    color: var(--color-light-2);
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(158, 121, 103, 0.1);
}

.search-result:hover {
    background: var(--color-primary);
    color: white;
}

.search-result:last-child {
    border-bottom: none;
}

/* Главная секция */
.hero {
    background: var(--color-dark);
    padding: 2rem 0 0;
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(158, 121, 103, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(184, 134, 11, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 70%, rgba(158, 121, 103, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    padding: 2rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(158, 121, 103, 0.1);
    border: 1px solid rgba(158, 121, 103, 0.3);
    border-radius: 25px;
    color: var(--color-primary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--color-light);
}

.hero-subtitle {
    display: block;
    font-size: 2.5rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--color-light-2);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-muted);
    margin-top: 0.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-hero {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-light-2);
    font-size: 0.95rem;
}

.feature-item i {
    color: var(--color-primary);
    font-size: 1.1rem;
}

/* Карточка плеера в hero */
.hero-player-card {
    background: var(--color-dark-2);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(158, 121, 103, 0.1);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    margin-top: 2rem;
}

.player-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.player-card-header h3 {
    color: var(--color-light);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--color-secondary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.current-track {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(158, 121, 103, 0.1);
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.track-cover-hero {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.track-cover-hero img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 8px;
}

.track-info-hero h4 {
    color: var(--color-light);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.track-info-hero p {
    color: var(--color-muted);
    font-size: 0.9rem;
    margin: 0;
}

.track-list-preview {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.track-preview-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.track-preview-item:hover {
    background: rgba(158, 121, 103, 0.1);
}

.current-track.open-track-modal,
.track-preview-item.open-track-modal {
	cursor: pointer;
}

.track-number {
    color: var(--color-muted);
    font-size: 0.9rem;
    font-weight: 500;
    width: 20px;
}

.track-name {
    color: var(--color-light-2);
    font-size: 0.9rem;
    flex: 1;
}

.track-artist {
    color: var(--color-muted);
    font-size: 0.85rem;
}

.btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-accent);
    color: white;
    background-size: 200% 200%;
}

.btn-primary:hover {
    background-position: right center;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(158, 121, 103, 0.3);
}

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-light);
}

.btn-outline-primary:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

/* Секции */
.section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--color-primary);
}

/* Карточки */
.card {
    background: var(--color-dark-3);
    border: 1px solid rgba(158, 121, 103, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(158, 121, 103, 0.2);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.card-body {
    padding: 1.5rem;
    color: var(--color-light-2);
}

.card-title {
    color: var(--color-light);
    font-weight: 500;
    margin-bottom: 1rem;
}

/* Популярные исполнители — стилизация карточек */
.section .card {
    background: var(--color-dark-2);
    color: var(--color-light-2);
    border: 1px solid rgba(158, 121, 103, 0.25);
}

.section .card .card-title {
    color: #ffffff;
}

.section .card .card-text {
    color: var(--color-light-2);
}

/* Перекрываем bootstrap .text-muted внутри карточек популярного блока */
.section .card .text-muted {
    color: var(--color-light-2) !important;
}

/* ==== Главная: карточки последних новостей ==== */
#news .news-item {
    background: var(--color-dark-2);
    border: 1px solid rgba(158, 121, 103, 0.15);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

#news .news-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--color-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

#news .news-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(158, 121, 103, 0.2);
    border-color: var(--color-primary);
}

#news .news-item:hover::before {
    opacity: 1;
}

#news .news-item:last-child {
    margin-bottom: 0;
}

#news .news-meta {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: var(--color-muted);
    font-size: 0.8rem;
    font-weight: 500;
}

#news .news-meta i {
    color: var(--color-primary);
    margin-right: 0.4rem;
    font-size: 0.75rem;
}

#news .news-item .news-title {
    margin: 0 0 0.3rem 0;
    line-height: 1.25;
    font-size: 1.1rem;
    font-weight: 600;
}

#news .news-item .news-title a {
    color: var(--color-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

#news .news-item .news-title a:hover {
    color: var(--color-primary);
}

#news .news-item .news-excerpt {
    margin: 0;
    color: var(--color-light-2);
    line-height: 1.4;
    font-size: 0.9rem;
    flex-grow: 1;
}

#news .news-item .news-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.75rem;
    padding-top: 0.6rem;
    border-top: 1px solid rgba(158, 121, 103, 0.1);
}

#news .news-item .btn {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 18px;
    transition: all 0.3s ease;
    border: 1.5px solid var(--color-primary);
    background: transparent;
    color: var(--color-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

#news .news-item .btn:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(158, 121, 103, 0.3);
}

/* Состояние "нет новостей" */
#news .no-news {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--color-dark-2);
    border: 1px solid rgba(158, 121, 103, 0.15);
    border-radius: 15px;
    color: var(--color-muted);
}

#news .no-news p {
    margin: 0;
    font-size: 1.1rem;
}

/* Адаптивность для новостей на главной */
@media (max-width: 768px) {
    #news .news-item {
        padding: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    #news .news-item .news-title {
        font-size: 1.1rem;
    }
    
    #news .news-item .news-excerpt {
        font-size: 0.9rem;
    }
    
    #news .news-item .news-actions {
        margin-top: 0.75rem;
        padding-top: 0.6rem;
    }
    
    #news .news-item .btn {
        padding: 0.45rem 1rem;
        font-size: 0.8rem;
    }
    
    #news .no-news {
        padding: 1.5rem 1.25rem;
    }
}

@media (max-width: 576px) {
    #news .news-item {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    #news .news-item .news-title {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    
    #news .news-meta {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }
    
    #news .news-item .news-excerpt {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    #news .news-item .news-actions {
        margin-top: 0.75rem;
        padding-top: 0.6rem;
        justify-content: center;
    }
    
    #news .news-item .btn {
        padding: 0.4rem 0.9rem;
        font-size: 0.75rem;
    }
    
    #news .no-news {
        padding: 1.25rem 1rem;
    }
    
    #news .no-news i {
        font-size: 2.5rem !important;
    }
}

.section .card .btn.btn-primary.btn-sm {
    padding: 0.5rem 1.1rem;
}

.section .card .btn-centered {
    display: inline-block;
    margin: 0.5rem auto 0.25rem auto;
}

/* Музыкальный плеер */
.music-player {
    background: var(--color-dark-2);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: 1px solid rgba(158, 121, 103, 0.1);
}

.track-info {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.track-cover {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    margin-right: 1rem;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.track-details h5 {
    margin: 0;
    color: var(--color-light);
}

.track-details p {
    margin: 0;
    color: var(--color-muted);
}

.player-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.control-btn {
    background: var(--color-primary);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.control-btn:hover {
    background: var(--color-primary-light);
    transform: scale(1.1);
}

.control-btn.play {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--color-dark-3);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress {
    height: 100%;
    background: var(--color-primary);
    width: 30%;
    transition: width 0.3s ease;
}

/* Новости */
.news-item {
    background: var(--color-dark-2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(158, 121, 103, 0.1);
    transition: all 0.3s ease;
}

.news-item:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 15px rgba(158, 121, 103, 0.2);
}

.news-meta {
    color: var(--color-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.news-title {
    color: var(--color-light);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* Футер */
.footer {
    background: var(--color-dark-2);
    border-top: 2px solid var(--color-primary);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer h5 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.footer a {
    color: var(--color-light-2);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--color-primary);
}

.footer .text-muted {
    color: var(--color-light-2) !important;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--color-secondary);
    transform: translateY(-3px);
}

/* Адаптивность */
@media (max-width: 768px) {
    .search-form {
        max-width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-features {
        gap: 1rem;
    }
    
    .hero-player-card {
        margin-top: 3rem;
    }
    
    .navbar-nav {
        background: var(--color-dark-2);
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 8px;
        border: 1px solid rgba(158, 121, 103, 0.2);
    }
    
    .navbar-collapse {
        margin-top: 1rem;
    }
    
    .search-form {
        order: -1;
        margin-bottom: 1rem;
    }
    
    .track-info {
        flex-direction: column;
        text-align: center;
    }
    
    .track-cover {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .player-controls {
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Рубрикатор по алфавиту */
.alphabet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.alphabet-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--color-dark-3);
    border: 2px solid rgba(158, 121, 103, 0.3);
    border-radius: 12px;
    color: var(--color-light);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.alphabet-letter:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(158, 121, 103, 0.4);
}

.alphabet-letter::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.alphabet-letter:active::after {
    width: 100%;
    height: 100%;
}

/* Адаптивность для рубрикатора */
@media (max-width: 768px) {
    .alphabet-grid {
        grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
        gap: 0.8rem;
        padding: 1.5rem 0;
    }
    
    .alphabet-letter {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .alphabet-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 0.5rem;
        padding: 1rem 0;
    }
    
    .alphabet-letter {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

/* Анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Страница навигации по исполнителям */
.main-content {
    padding-top: 6rem;
    min-height: 100vh;
}

.breadcrumb-nav {
    margin-top: 2rem;
    margin-bottom: 3rem;
}

/* Навигация (страница списка исполнителей): фиксируем отступы */
.navig-page { padding-top: 7.5rem !important; padding-bottom: 3rem !important; }
.navig-page .breadcrumb-nav { margin-top: 0; margin-bottom: 2rem; }
.navig-page .pagination-nav { margin-top: 2rem; margin-bottom: 0; }

.breadcrumb {
    background: transparent;
    padding: 0.75rem 0;
    border-radius: 0;
    border: none;
    font-size: 0.9rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: var(--color-muted);
    font-size: 1.1rem;
    font-weight: 500;
    vertical-align: middle;
    line-height: 1;
}

.breadcrumb-item a {
    color: var(--color-light-2);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--color-primary);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--color-primary);
    font-weight: 500;
}

.breadcrumb-item i {
    margin-right: 0.25rem;
}

.page-header {
    margin-bottom: 3rem;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-light);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.letter-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--gradient-accent);
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(158, 121, 103, 0.3);
}

.page-subtitle {
    color: var(--color-muted);
    font-size: 1.1rem;
    margin: 0;
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Навигация: увеличить аватар в сетке исполнителей, не затрагивая другие страницы */
.artists-grid .artist-avatar { width: 150px; height: 150px; }
@media (max-width: 576px) { .artists-grid .artist-avatar { width: 120px; height: 120px; } }

.artist-card {
    background: var(--color-dark-2);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(158, 121, 103, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.artist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(158, 121, 103, 0.2);
    border-color: var(--color-primary);
}

.artist-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.artist-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.artist-card .artist-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-light);
    margin-bottom: 0.5rem;
}

.artist-card .artist-info {
    color: var(--color-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.artist-card .artist-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 1.5rem;
}

.artist-card .stat {
    text-align: center;
}

.artist-card .stat-number {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-primary);
}

.artist-card .stat-label {
    font-size: 0.8rem;
    color: var(--color-muted);
    margin-top: 0.25rem;
}

.artist-card .artist-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.btn-artist {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.pagination-nav {
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.pagination .page-link {
    background-color: var(--color-dark-3);
    border: 1px solid rgba(158, 121, 103, 0.1);
    color: var(--color-light-2);
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin: 0 0.25rem;
}

.pagination .page-link:hover,
.pagination .page-item.active .page-link {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

.pagination .page-item.disabled .page-link {
    background-color: var(--color-dark-3);
    border-color: rgba(158, 121, 103, 0.1);
    color: var(--color-muted);
}

/* Адаптивность для страницы навигации */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .letter-badge {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .artists-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .artist-avatar {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .artists-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .artist-card {
        padding: 1.5rem;
    }
    
    .pagination .page-link {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

/* Страница карточки исполнителя */
.artist-profile {
    background: var(--color-dark-2);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(158, 121, 103, 0.1);
}

.artist-photo {
    text-align: center;
}

.photo-placeholder {
    width: 250px;
    height: 250px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 6rem;
    color: white;
    box-shadow: 0 10px 30px rgba(158, 121, 103, 0.3);
    overflow: hidden;
}

.photo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.artist-profile .artist-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.artist-profile .artist-info {
    padding-left: 2rem;
}

.artist-profile .artist-name {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-light);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.artist-real-name {
    font-size: 1.2rem;
    color: var(--color-muted);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.artist-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.genre-badge {
    background: var(--color-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.years-badge {
    background: var(--color-dark-3);
    color: var(--color-light-2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(158, 121, 103, 0.2);
}

.artist-profile .artist-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.artist-profile .stat-item {
    text-align: center;
}

.artist-profile .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
}

.artist-profile .stat-label {
    font-size: 0.9rem;
    color: var(--color-muted);
    margin-top: 0.25rem;
}

.artist-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--color-light-2);
    margin: 0;
}

/* Вкладки */
.artist-tabs {
    margin-top: 2rem;
}

.nav-tabs {
    border-bottom: 2px solid rgba(158, 121, 103, 0.2);
    margin-bottom: 2rem;
}

.nav-tabs .nav-link {
    background: transparent;
    border: none;
    color: var(--color-light-2);
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 10px 10px 0 0;
    transition: all 0.2s ease;
    margin-right: 0.5rem;
    cursor: pointer;
    user-select: none;
}

.nav-tabs .nav-link:hover {
    color: var(--color-primary);
    background: rgba(158, 121, 103, 0.1);
    border-color: transparent;
}

.nav-tabs .nav-link.active {
    background: var(--color-primary) !important;
    color: white !important;
    border-color: var(--color-primary) !important;
}

.nav-tabs .nav-link:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(158, 121, 103, 0.3);
}

.tab-content {
    padding: 2rem 0;
}

.tab-pane {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease-out;
}

.tab-pane.show.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Биография */
.biography-content h3 {
    color: var(--color-light);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.biography-text {
    color: var(--color-light-2);
    line-height: 1.7;
    font-size: 1.1rem;
}

.biography-text h4 {
    color: var(--color-primary);
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.biography-text p {
    margin-bottom: 1.5rem;
}

.biography-facts {
    background: var(--color-dark-2);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    border: 1px solid rgba(158, 121, 103, 0.1);
}

.biography-facts h4 {
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.biography-facts ul {
    list-style: none;
    padding: 0;
}

.biography-facts li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.biography-facts li:before {
    content: "▶";
    color: var(--color-primary);
    position: absolute;
    left: 0;
}

/* Альбомы */
.albums-content h3 {
    color: var(--color-light);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.album-card {
    background: var(--color-dark-2);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(158, 121, 103, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.album-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(158, 121, 103, 0.2);
    border-color: var(--color-primary);
}

.album-cover {
    width: 120px;
    height: 120px;
    background: var(--gradient-accent);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
    color: white;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.album-card:hover .album-cover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(158, 121, 103, 0.3);
}

.album-card:hover .album-cover img {
    transform: scale(1.05);
}

.album-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-light);
    margin-bottom: 0.5rem;
}

.album-year {
    color: var(--color-primary);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.album-tracks {
    color: var(--color-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* Специальная версия стилей для карточки артиста: вкладка Альбомы */
.albums-content .album-cover {
    width: 100%;
    height: 160px;
    border-radius: 12px;
    margin: 0 0 0.75rem 0;
    display: block;
}

.albums-content .album-cover img {
    border-radius: 0;
    display: block;
    object-fit: cover;
}

.albums-content .album-title {
    font-size: 1.05rem;
    margin: 0.5rem 0 0.25rem 0;
}

.albums-content .album-year {
    margin: 0 0 0.25rem 0;
}

.albums-content .album-tracks {
    margin: 0.25rem 0 0.75rem 0;
}

/* Адаптивные высоты обложки в карточке артиста */
@media (max-width: 992px) {
    .albums-content .album-cover { height: 140px; }
}
@media (max-width: 576px) {
    .albums-content .album-cover { height: 120px; }
}

.album-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

/* Главная */
.artist-card-photo {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        overflow: hidden;
        margin: 0 auto 15px;
        border: 3px solid rgba(158, 121, 103, 0.2);
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(158, 121, 103, 0.08);
    }
    
    .artist-card-photo:hover {
        border-color: rgba(158, 121, 103, 0.4);
        transform: scale(1.05);
    }
    
    .artist-card-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }
    
    .artist-card-photo .no-photo {
        color: #9e7967;
        opacity: 0.6;
    }
    
    /* Стили для статистики исполнителя */
    .artist-stats {
        background: rgba(146, 106, 86, 0.08);
        border-radius: 12px;
        padding: 12px;
        margin-bottom: 15px;
    }
    
    .artist-stats .d-flex {
        align-items: center;
    }
    
    .artist-stats .text-muted {
        color: #6c757d !important;
        font-size: 0.85rem;
        font-weight: 500;
    }
    
    .artist-stats .badge {
        font-size: 0.75rem;
        padding: 4px 8px;
        border-radius: 20px;
        font-weight: 600;
    }
    
    .artist-stats .badge.bg-danger {
        background-color: #9e7967 !important;
        color: white;
    }
    
    .artist-stats .badge.bg-primary {
        background-color: #805f50 !important;
        color: white;
    }
    
    .artist-stats .fas.fa-heart {
        color: #9e7967 !important;
    }
    
    .artist-stats .fas.fa-music {
        color: #805f50 !important;
    }
    
    /* Стили для карточек исполнителей */
    #artists .card {
        border: 1px solid rgba(158, 121, 103, 0.2);
        border-radius: 15px;
        transition: all 0.3s ease;
        overflow: hidden;
        background: #2a2a2a;
    }
    
    #artists .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(158, 121, 103, 0.15);
        border-color: rgba(158, 121, 103, 0.3);
    }
    
    #artists .card-body {
        padding: 20px;
        text-align: center;
    }
    
    #artists .card-title {
        color: #e8e6e9;
        font-weight: 600;
        margin-bottom: 15px;
    }
    
    #artists .btn-primary {
        background-color: #9e7967;
        border-color: #9e7967;
        border-radius: 25px;
        padding: 8px 20px;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    #artists .btn-primary:hover {
        background-color: #805f50;
        border-color: #805f50;
        transform: translateY(-1px);
    }
    /* Компактные карточки новостей на главной */
    #news .news-item {
        background: #2a2a2a;
        border: 1px solid rgba(158, 121, 103, 0.2);
        border-radius: 12px;
        padding: 12px 14px;
        margin-bottom: 12px;
    }
    #news .news-meta {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #6c757d;
        font-size: 0.85rem;
        margin-bottom: 6px;
    }
    #news .news-title {
        font-size: 1rem;
        margin: 0 0 6px 0;
        line-height: 1.25;
    }
    #news .news-title a { color: #e8e6e9; text-decoration: none; }
    #news .news-title a:hover { color: #9e7967; }
    #news .news-excerpt {
        font-size: 0.9rem;
        color: #c9c7c9;
        margin: 0 0 8px 0;
    }
    #news .news-actions .btn {
        padding: 4px 10px;
        font-size: 0.85rem;
        border-radius: 16px;
        border-color: #9e7967;
        color: #9e7967;
    }
    #news .news-actions .btn:hover { background: #9e7967; color: #fff; }
    
    /* Стили для блока новинок альбомов */
    .new-albums-block {
        background: #2a2a2a;
        border: 1px solid rgba(158, 121, 103, 0.2);
        border-radius: 15px;
        padding: 20px;
        margin-bottom: 20px;
        overflow: hidden;
    }
    
    .new-albums-block .card-title {
        color: #e8e6e9;
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .new-albums-block .card-title i {
        color: #9e7967;
    }
    
    .album-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 0;
        border-bottom: 1px solid rgba(158, 121, 103, 0.1);
        transition: all 0.3s ease;
        max-width: 100%;
        min-width: 0;
    }
    
    .album-item:last-child {
        border-bottom: none;
    }
    
    .album-item:hover {
        background: rgba(158, 121, 103, 0.05);
        border-radius: 8px;
        padding-left: 8px;
        padding-right: 8px;
    }
    
    .album-cover-mini {
        width: 50px;
        height: 50px;
        border-radius: 8px;
        overflow: hidden;
        flex-shrink: 0;
        background: rgba(158, 121, 103, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(158, 121, 103, 0.2);
    }
    
    .album-cover-mini img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .album-cover-mini .no-cover {
        color: #9e7967;
        font-size: 1.2rem;
    }
    
    .album-info-mini {
        flex-grow: 1;
        min-width: 0;
        overflow: hidden;
    }
    
    .album-title-mini {
        color: #e8e6e9;
        font-size: 0.95rem;
        font-weight: 600;
        margin: 0 0 4px 0;
        line-height: 1.2;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .album-artist-mini {
        color: #9e7967;
        font-size: 0.85rem;
        margin: 0 0 2px 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .album-year-mini {
        color: #6c757d;
        font-size: 0.8rem;
        margin: 0;
    }
    
    .album-year-badge {
        background: #9e7967;
        color: white;
        font-size: 0.75rem;
        padding: 2px 8px;
        border-radius: 12px;
        font-weight: 600;
        flex-shrink: 0;
    }
    
    .new-albums-btn {
        background: #9e7967;
        border-color: #9e7967;
        color: white;
        border-radius: 20px;
        padding: 8px 16px;
        font-size: 0.9rem;
        font-weight: 500;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }
    
    .new-albums-btn:hover {
        background: #805f50;
        border-color: #805f50;
        color: white;
        transform: translateY(-1px);
        text-decoration: none;
    }
    
    /* Стили для блока "Исполнитель месяца" */
    .artist-of-month-card {
        background: linear-gradient(135deg, rgba(158, 121, 103, 0.15) 0%, rgba(158, 121, 103, 0.05) 100%);
        border: 2px solid rgba(158, 121, 103, 0.3);
        border-radius: 20px;
        padding: 40px;
        margin: 20px 0;
        position: relative;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(158, 121, 103, 0.2);
        transition: all 0.3s ease;
    }
    
    .artist-of-month-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(158, 121, 103, 0.3);
        border-color: rgba(158, 121, 103, 0.5);
    }
    
    .artist-of-month-bg {
        position: absolute;
        top: -50%;
        right: -20%;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(158, 121, 103, 0.1) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }
    
    .artist-of-month-photo {
        position: relative;
        width: 200px;
        height: 200px;
        margin: 0 auto 20px;
        border-radius: 50%;
        overflow: hidden;
        border: 4px solid rgba(158, 121, 103, 0.4);
        box-shadow: 0 8px 25px rgba(158, 121, 103, 0.3);
        transition: all 0.3s ease;
    }
    
    .artist-of-month-photo:hover {
        transform: scale(1.05);
        border-color: #9e7967;
        box-shadow: 0 12px 35px rgba(158, 121, 103, 0.5);
    }
    
    .artist-of-month-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .no-photo-large {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(158, 121, 103, 0.2);
        color: #9e7967;
        font-size: 4rem;
    }
    
    .crown-badge {
        position: absolute;
        top: -10px;
        right: 10px;
        background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
        color: #8B4513;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
        animation: sparkle 2s infinite;
    }
    
    @keyframes sparkle {
        0%, 100% { transform: scale(1) rotate(0deg); }
        50% { transform: scale(1.1) rotate(5deg); }
    }
    
    .artist-of-month-name {
        color: #e8e6e9;
        font-size: 2.2rem;
        font-weight: 700;
        margin: 0 0 10px 0;
        background: linear-gradient(135deg, #e8e6e9 0%, #9e7967 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .artist-of-month-fullname {
        color: #c9c7c9;
        font-size: 1.1rem;
        font-style: italic;
        margin: 0 0 20px 0;
    }
    
    .artist-of-month-stats {
        display: flex;
        gap: 15px;
        margin: 20px 0;
        flex-wrap: wrap;
    }
    
    .stat-badge {
        background: rgba(158, 121, 103, 0.2);
        border: 1px solid rgba(158, 121, 103, 0.3);
        border-radius: 25px;
        padding: 8px 16px;
        display: flex;
        align-items: center;
        gap: 8px;
        color: #e8e6e9;
        font-size: 0.9rem;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .stat-badge:hover {
        background: rgba(158, 121, 103, 0.3);
        transform: translateY(-2px);
    }
    
    .stat-badge i {
        color: #9e7967;
        font-size: 0.8rem;
    }
    
    .artist-of-month-description {
        color: #c9c7c9;
        font-size: 1.1rem;
        line-height: 1.6;
        margin: 25px 0;
        font-style: italic;
    }
    
    .btn-artist-month {
        background: linear-gradient(135deg, #9e7967 0%, #805f50 100%);
        border: none;
        color: white;
        padding: 12px 24px;
        border-radius: 25px;
        font-size: 1rem;
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(158, 121, 103, 0.4);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .btn-artist-month:hover {
        background: linear-gradient(135deg, #805f50 0%, #6b4e40 100%);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(158, 121, 103, 0.6);
        text-decoration: none;
    }
    
    .artist-of-month-placeholder {
        text-align: center;
        padding: 60px 20px;
        color: #6c757d;
        background: rgba(158, 121, 103, 0.05);
        border: 2px dashed rgba(158, 121, 103, 0.2);
        border-radius: 15px;
    }
    
    .artist-of-month-placeholder i {
        color: #9e7967;
        opacity: 0.5;
        margin-bottom: 15px;
    }
    
    /* Адаптивность для мобильных */
    @media (max-width: 768px) {
        .artist-of-month-card {
            padding: 25px;
        }
        
        .artist-of-month-photo {
            width: 150px;
            height: 150px;
        }
        
        .artist-of-month-name {
            font-size: 1.8rem;
        }
        
        .artist-of-month-stats {
            justify-content: center;
        }
        
        .crown-badge {
            width: 40px;
            height: 40px;
            font-size: 1.2rem;
            top: -5px;
            right: 5px;
        }
    }
	
/* Карточка исполнителя */
   /* Компактный верхний блок карточки исполнителя */
    .artist-compact {
        background: rgba(158, 121, 103, 0.08);
        border: 1px solid rgba(158, 121, 103, 0.25);
        border-radius: 14px;
        padding: 18px;
        display: flex;
        gap: 18px;
        align-items: center;
        margin: 12px 0 18px 0;
        position: relative;
    }
    .artist-compact .avatar {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        overflow: hidden;
        border: 3px solid rgba(158, 121, 103, 0.25);
        background: rgba(158, 121, 103, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    .artist-compact .avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }
    .artist-compact .avatar .no-photo { color: #9e7967; opacity: .6; }
    .artist-compact .header_card {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    .artist-compact .name { font-size: 1.5rem; font-weight: 700; color: #e8e6e9; margin: 0; line-height: 1.2; }
    .artist-compact .full-name { color: #6c757d; }
    .artist-compact .meta-grid {
        margin-top: 8px;
        display: grid;
        grid-template-columns: repeat(3, minmax(0,1fr));
        gap: 10px 14px;
    }
    .artist-compact .meta-item {
        display: flex;
        align-items: center;
        gap: 8px;
        background: rgba(158, 121, 103, 0.08);
        border: 1px solid rgba(158, 121, 103, 0.2);
        border-radius: 10px;
        padding: 8px 10px;
        color: #e8e6e9;
    }
    .artist-compact .meta-item i { color: #9e7967; }
    .artist-compact .meta-item .num { font-weight: 700; color: #e8e6e9; }

    /* Отступ от фиксированной шапки для этой страницы */
    .main-content { padding-top: 64px; }

    /* Крошки не должны перекрывать шапку */
    .breadcrumb-nav { position: relative; z-index: 0; }

    /* Мобильная адаптация компактного блока */
    @media (max-width: 576px) {
        .artist-compact { 
            flex-direction: column; 
            align-items: flex-start; 
            gap: 12px; 
            padding: 14px; 
        }
        .artist-compact .avatar { 
            width: 96px; height: 96px; 
        }
        .artist-compact .name { font-size: 1.25rem; }
        .artist-compact .meta-grid { 
            grid-template-columns: repeat(2, minmax(0,1fr)); 
            gap: 8px; 
            width: 100%;
        }
        .artist-compact .meta-item { padding: 6px 8px; }
    }

    /* Сетка для популярных треков */
    .popular-tracks .tracks-columns {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px 24px;
    }
    .popular-tracks .tracks-col {
        list-style: none;
        padding-left: 0;
        margin: 0;
    }
    .popular-tracks .tracks-col li { margin-bottom: 6px; }
    .popular-tracks .tracks-col li i { color: #9e7967; }

    @media (min-width: 992px) { /* desktop */
        .popular-tracks .tracks-columns {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    /* Светлая кнопка закрытия модального окна */
    .btn-close.btn-close-custom {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e8e6e9'%3e%3cpath d='M.293 1.707a1 1 0 011.414-1.414L8 6.586l6.293-6.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293A1 1 0 01.293 14.293L6.586 8 .293 1.707z'/%3e%3c/svg%3e");
        opacity: .9;
    }
    .btn-close.btn-close-custom:hover { opacity: 1; }
    
    /* Обновляем кнопки в стилистике сайта */
    .artist-actions .btn-primary {
        background-color: #9e7967;
        border-color: #9e7967;
        border-radius: 25px;
        transition: all 0.3s ease;
    }
    
    .artist-actions .btn-primary:hover {
        background-color: #805f50;
        border-color: #805f50;
        transform: translateY(-1px);
    }
    
    .artist-actions .btn-outline-primary {
        color: #9e7967;
        border-color: #9e7967;
        border-radius: 25px;
        transition: all 0.3s ease;
    }
    
    .artist-actions .btn-outline-primary:hover {
        background-color: #9e7967;
        border-color: #9e7967;
        color: white;
        transform: translateY(-1px);
    }
    
    /* Дополнительные стили для вкладок */
    .nav-tabs .nav-link {
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .nav-tabs .nav-link:hover {
        background-color: #f8f9fa;
        border-color: #dee2e6;
    }
    
    .nav-tabs .nav-link.active {
        background-color: #007bff;
        border-color: #007bff;
        color: white;
    }
    
    /* Важно: скрываем все вкладки по умолчанию */
    .tab-pane {
        display: none !important;
    }
    
    /* Показываем только активную вкладку */
    .tab-pane.active {
        display: block !important;
    }
    
    .tab-pane.show {
        display: block !important;
    }
    
    /* Убираем Bootstrap классы, которые могут мешать */
    .tab-pane.fade {
        opacity: 1 !important;
    }
    
    .tab-pane.fade.show {
        opacity: 1 !important;
    }

    /* Новости исполнителя — стили карточек в общем стиле сайта */
    /* В стиле .info-block */
    .artist-news-list .artist-news-card {
        background: rgba(158, 121, 103, 0.08);
        border: 1px solid rgba(158, 121, 103, 0.25);
        border-radius: 12px;
        padding: 16px 18px;
        margin-bottom: 14px;
        display: flex;
        align-items: flex-start;
        gap: 14px;
    }
    .artist-news-list .artist-news-date {
        color: #6c757d;
        font-size: 0.9rem;
        line-height: 1.2;
        text-align: center;
        min-width: 92px;
    }
    .artist-news-list .artist-news-title a {
        color: #9e7967;
        text-decoration: none;
    }
    .artist-news-list .artist-news-title a:hover {
        color: #805f50;
        text-decoration: underline;
    }
    .artist-news-list .artist-news-excerpt {
        color: #e8e6e9;
        margin-bottom: 8px;
    }
    .artist-news-list .artist-news-actions .btn {
        border-color: #9e7967;
        color: #9e7967;
    }
    .artist-news-list .artist-news-actions .btn:hover {
        background-color: #9e7967;
        color: #fff;
    }
    
    /* Стили для ссылок треков в популярных композициях */
    .popular-tracks .tracks-col a {
        color: #9e7967;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    .popular-tracks .tracks-col a:hover {
        color: #805f50;
        text-decoration: underline;
    }

/* Новые альбомы */
    /* Основные стили страницы */
    .main-content {
        padding-top: 80px;
        min-height: 100vh;
        background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    }
    
    .container {
        max-width: 1200px;
    }
    
    /* Хлебные крошки */
    .breadcrumb-nav {
        background: rgba(158, 121, 103, 0.08);
        border: 1px solid rgba(158, 121, 103, 0.2);
        border-radius: 10px;
        padding: 12px 20px;
        margin-bottom: 30px;
    }
    
    .breadcrumb {
        margin: 0;
        background: none;
        padding: 0;
    }
    
    .breadcrumb-item {
        color: #c9c7c9;
    }
    
    .breadcrumb-item a {
        color: #9e7967;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .breadcrumb-item a:hover {
        color: #805f50;
    }
    
    .breadcrumb-item.active {
        color: #e8e6e9;
    }
    
    .breadcrumb-item + .breadcrumb-item::before {
        color: #6c757d;
        content: "›";
    }
    
    /* Заголовок страницы */
    .page-header {
        text-align: center;
        margin-bottom: 40px;
        background: rgba(158, 121, 103, 0.05);
        border: 1px solid rgba(158, 121, 103, 0.15);
        border-radius: 15px;
        padding: 30px;
    }
    
    .page-title {
        color: #e8e6e9;
        font-size: 2.2rem;
        font-weight: 700;
        margin-bottom: 10px;
        background: linear-gradient(135deg, #e8e6e9 0%, #9e7967 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .page-subtitle {
        color: #c9c7c9;
        font-size: 1.1rem;
        margin: 0;
    }
    
    /* Статистика */
    .stats-section {
        background: rgba(158, 121, 103, 0.08);
        border: 1px solid rgba(158, 121, 103, 0.2);
        border-radius: 15px;
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        text-align: center;
    }
    
    .stat-item {
        background: rgba(158, 121, 103, 0.1);
        border: 1px solid rgba(158, 121, 103, 0.2);
        border-radius: 10px;
        padding: 15px;
        transition: all 0.3s ease;
    }
    
    .stat-item:hover {
        background: rgba(158, 121, 103, 0.15);
        transform: translateY(-2px);
    }
    
    .stat-number {
        color: #9e7967;
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 5px;
    }
    
    .stat-label {
        color: #c9c7c9;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    /* Компактная таблица альбомов */
    .albums-table {
        background: rgba(158, 121, 103, 0.05);
        border: 1px solid rgba(158, 121, 103, 0.2);
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    
    .artist-row {
        border-bottom: 1px solid rgba(158, 121, 103, 0.15);
        transition: all 0.3s ease;
        background: rgba(42, 42, 42, 0.5);
    }
    
    .artist-row:last-child {
        border-bottom: none;
    }
    
    .artist-row:hover {
        background: rgba(158, 121, 103, 0.08);
    }
    
    .artist-section {
        display: flex;
        align-items: center;
        min-height: 80px;
        padding: 15px;
    }
    
    /* Компактная информация об исполнителе */
    .artist-info {
        display: flex;
        align-items: center;
        gap: 15px;
        min-width: 250px;
        flex-shrink: 0;
    }
    
    .artist-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        overflow: hidden;
        background: rgba(158, 121, 103, 0.2);
        border: 2px solid rgba(158, 121, 103, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: all 0.3s ease;
    }
    
    .artist-row:hover .artist-avatar {
        border-color: #9e7967;
    }
    
    .artist-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .artist-avatar .no-photo {
        color: #9e7967;
        font-size: 1.2rem;
    }
    
    .artist-details h3 {
        color: #e8e6e9;
        font-size: 1rem;
        font-weight: 600;
        margin: 0 0 4px 0;
        line-height: 1.2;
    }
    
    .artist-meta {
        color: #9e7967;
        font-size: 0.8rem;
        margin: 0;
        display: flex;
        align-items: center;
        gap: 4px;
    }
    
    .artist-meta i {
        font-size: 0.7rem;
    }
    
    /* Компактные альбомы исполнителя */
    .albums-list {
        flex: 1;
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        align-items: center;
    }
    
    .album-card {
        background: rgba(158, 121, 103, 0.08);
        border: 1px solid rgba(158, 121, 103, 0.2);
        border-radius: 8px;
        padding: 8px 12px;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
        min-width: 180px;
        max-width: 250px;
    }
    
    .album-card:hover {
        background: rgba(158, 121, 103, 0.15);
        border-color: #9e7967;
        transform: translateY(-1px);
    }
    
    .albums-list .album-cover {
        width: 40px;
        height: 40px;
        border-radius: 6px;
        overflow: hidden;
        background: rgba(158, 121, 103, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(158, 121, 103, 0.2);
        flex-shrink: 0;
    }
    
    .albums-list .album-cover img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .albums-list .album-cover .no-cover {
        color: #9e7967;
        font-size: 1rem;
    }
    
    .album-info {
        flex: 1;
        min-width: 0;
    }
    
    .album-title {
        color: #e8e6e9;
        font-size: 0.85rem;
        font-weight: 600;
        margin: 0 0 2px 0;
        line-height: 1.2;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .album-meta {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.75rem;
    }
    
    .album-tracks {
        color: #c9c7c9;
        display: flex;
        align-items: center;
        gap: 3px;
    }
    
    .album-date {
        color: #9e7967;
        font-weight: 500;
    }
    
    .btn-listen {
        background: #9e7967;
        border: none;
        color: white;
        padding: 4px 8px;
        border-radius: 12px;
        font-size: 0.7rem;
        font-weight: 500;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 3px;
        transition: all 0.3s ease;
        flex-shrink: 0;
    }
    
    .btn-listen:hover {
        background: #805f50;
        color: white;
        transform: translateY(-1px);
        text-decoration: none;
    }
    
    .btn-listen i {
        font-size: 0.6rem;
    }
    
    /* Пустое состояние */
    .empty-state {
        text-align: center;
        padding: 80px 20px;
        background: rgba(158, 121, 103, 0.05);
        border: 1px solid rgba(158, 121, 103, 0.15);
        border-radius: 15px;
    }
    
    .empty-state i {
        font-size: 4rem;
        color: #9e7967;
        margin-bottom: 20px;
        opacity: 0.7;
    }
    
    .empty-state h3 {
        color: #e8e6e9;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .empty-state p {
        color: #c9c7c9;
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    .btn-home {
        background: linear-gradient(135deg, #9e7967 0%, #805f50 100%);
        border: none;
        color: white;
        padding: 12px 24px;
        border-radius: 25px;
        font-size: 1rem;
        font-weight: 500;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(158, 121, 103, 0.3);
    }
    
    .btn-home:hover {
        background: linear-gradient(135deg, #805f50 0%, #6b4e40 100%);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(158, 121, 103, 0.4);
        text-decoration: none;
    }
    
    /* Пагинация */
    .pagination-section {
        margin-top: 40px;
        text-align: center;
    }
    
    .pagination {
        justify-content: center;
        gap: 5px;
    }
    
    .page-link {
        background: rgba(158, 121, 103, 0.1);
        border: 1px solid rgba(158, 121, 103, 0.2);
        color: #9e7967;
        padding: 10px 15px;
        border-radius: 8px;
        text-decoration: none;
        transition: all 0.3s ease;
        font-weight: 500;
    }
    
    .page-link:hover {
        background: rgba(158, 121, 103, 0.2);
        border-color: #9e7967;
        color: #805f50;
        transform: translateY(-1px);
    }
    
    .page-item.active .page-link {
        background: linear-gradient(135deg, #9e7967 0%, #805f50 100%);
        border-color: #9e7967;
        color: white;
        box-shadow: 0 2px 10px rgba(158, 121, 103, 0.3);
    }
    
    .page-item.disabled .page-link {
        background: rgba(42, 42, 42, 0.5);
        border-color: rgba(158, 121, 103, 0.1);
        color: #6c757d;
        cursor: not-allowed;
    }
    
    /* Сетка альбомов */
    .albums-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 20px;
        margin-top: 30px;
    }
    
    /* Карточка альбома */
    .album-card-new {
        background: rgba(158, 121, 103, 0.08);
        border: 1px solid rgba(158, 121, 103, 0.2);
        border-radius: 15px;
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        position: relative;
    }
    
    .album-card-new:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(158, 121, 103, 0.3);
        border-color: rgba(158, 121, 103, 0.4);
    }
    
    /* Обложка альбома */
    .album-cover-large {
        position: relative;
        width: 100%;
        height: 200px;
        overflow: hidden;
        background: rgba(158, 121, 103, 0.1);
    }
    
    .album-cover-large img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
    
    .album-card-new:hover .album-cover-large img {
        transform: scale(1.05);
    }
    
    .no-cover-large {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #9e7967;
        font-size: 3rem;
        opacity: 0.5;
    }
    
    /* Оверлей с кнопкой воспроизведения */
    .album-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .album-card-new:hover .album-overlay {
        opacity: 1;
    }
    
    .play-btn {
        background: #9e7967;
        border: none;
        color: white;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(158, 121, 103, 0.5);
    }
    
    .play-btn:hover {
        background: #805f50;
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(158, 121, 103, 0.7);
    }
    
    /* Детали альбома */
    .album-details {
        padding: 15px;
    }
    
    .album-title-new {
        color: #e8e6e9;
        font-size: 0.95rem;
        font-weight: 600;
        margin: 0 0 6px 0;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        line-clamp: 2;
        overflow: hidden;
        min-height: 2.4em;
    }
    
    .album-artist {
        color: #9e7967;
        font-size: 0.85rem;
        font-weight: 500;
        margin: 0 0 10px 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .album-meta-new {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 10px;
        border-top: 1px solid rgba(158, 121, 103, 0.2);
    }
    
    .album-tracks-count {
        color: #c9c7c9;
        font-size: 0.75rem;
        display: flex;
        align-items: center;
        gap: 4px;
    }
    
    .album-tracks-count i {
        font-size: 0.7rem;
        opacity: 0.8;
    }
    
    .album-release-date {
        color: #9e7967;
        font-size: 0.75rem;
        font-weight: 600;
        background: rgba(158, 121, 103, 0.2);
        padding: 2px 6px;
        border-radius: 10px;
    }
    
    /* Адаптивность */
    @media (max-width: 1400px) {
        .albums-grid {
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
        }
    }
    
    @media (max-width: 1200px) {
        .albums-grid {
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        
        .album-cover-large {
            height: 180px;
        }
    }
    
    @media (max-width: 992px) {
        .albums-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
        }
        
        .album-cover-large {
            height: 160px;
        }
        
        .album-details {
            padding: 12px;
        }
        
        .album-title-new {
            font-size: 0.9rem;
        }
        
        .album-artist {
            font-size: 0.8rem;
        }
    }
    
    @media (max-width: 768px) {
        .container {
            padding: 0 15px;
        }
        
        .albums-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            margin-top: 20px;
        }
        
        .album-cover-large {
            height: 140px;
        }
        
        .album-details {
            padding: 10px;
        }
        
        .album-title-new {
            font-size: 0.85rem;
            min-height: 2.2em;
        }
        
        .album-artist {
            font-size: 0.75rem;
            margin: 0 0 8px 0;
        }
        
        .album-tracks-count,
        .album-release-date {
            font-size: 0.7rem;
        }
        
        .stats-grid {
            grid-template-columns: 1fr;
        }
        
        .page-header {
            padding: 20px;
        }
        
        .page-title {
            font-size: 1.8rem;
        }
        
        .play-btn {
            width: 40px;
            height: 40px;
            font-size: 1rem;
        }
    }
    
    @media (max-width: 480px) {
        .albums-grid {
            grid-template-columns: 1fr;
            gap: 15px;
        }
        
        .album-cover-large {
            height: 200px;
        }
        
        .album-details {
            padding: 15px;
        }
        
        .album-title-new {
            font-size: 0.95rem;
        }
        
        .album-artist {
            font-size: 0.85rem;
        }
        
        .main-content {
            padding-top: 60px;
        }
        
        .breadcrumb-nav {
            padding: 10px 15px;
            margin-bottom: 20px;
        }
        
        .page-header {
            padding: 15px;
            margin-bottom: 20px;
        }
        
        .page-title {
            font-size: 1.5rem;
        }
        
        .page-subtitle {
            font-size: 1rem;
        }
        
        .stats-section {
            padding: 15px;
            margin-bottom: 20px;
        }
    }

/* Рейтинги */
 .ratings-header { margin: 10px 0 20px 0; }
    /* Отступ от фиксированной шапки */
    .ratings-breadcrumb { margin: 64px 0 24px 0; }
    .ratings-note { color: #cfcdd2; margin: 8px 0 18px 0; }
    .ratings-card {
        background: rgba(158, 121, 103, 0.08);
        border: 1px solid rgba(158, 121, 103, 0.25);
        border-radius: 14px;
        padding: 16px;
    }
    .ratings-table { width: 100%; border-collapse: separate; border-spacing: 0 8px; }
    .ratings-table thead th { color: #e8e6e9; font-weight: 600; padding: 10px 12px; }
    .ratings-row {
        background: #2a2a2a;
        border: 1px solid #494441;
        border-radius: 10px;
        overflow: hidden;
    }
    .ratings-row td { color: #e8e6e9; padding: 10px 12px; vertical-align: middle; }
    .ratings-row .pos { width: 56px; color: #e8e6e9; opacity: .9; text-align: center; }
    .ratings-row .artist { display: flex; align-items: center; gap: 12px; }
    .ratings-row .avatar { width: 48px; height: 48px; border-radius: 50%; overflow: hidden; border: 2px solid rgba(158,121,103,.25); background: rgba(158,121,103,.08); flex-shrink: 0; }
    .ratings-row .avatar img { width: 100%; height: 100%; object-fit: cover; }
    .ratings-row .name a { color: #e8e6e9; text-decoration: none; }
    .ratings-row .name a:hover { text-decoration: underline; }
    .badge-pill { display: inline-block; padding: 5px 10px; border-radius: 999px; font-weight: 600; font-size: .9rem; }
    .badge-like { background: #9e7967; color: #fff; }
    .badge-tracks { background: #805f50; color: #fff; }
    .badge-rating { background: rgba(158,121,103,.2); color: #e8e6e9; border: 1px solid rgba(158,121,103,.25); }

    /* Mobile */
    @media (max-width: 768px) {
        .ratings-table thead { display: none; }
        .ratings-table, .ratings-table tbody, .ratings-table tr, .ratings-table td { display: block; width: 100%; }
        .ratings-row { 
            margin-bottom: 12px; 
            padding: 10px; 
            box-shadow: 0 8px 20px rgba(0,0,0,.25);
        }
        .ratings-row td { padding: 8px 10px; text-align: center; }
        .ratings-row .pos { text-align: center; font-weight: 700; }
        .ratings-row .artist { gap: 10px; flex-direction: column; align-items: center; text-align: center; }
        .ratings-row .avatar { width: 76px; height: 76px; }
        .ratings-row .name a { font-size: 1.08rem; }
        .ratings-row .stats { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
        .badge-pill { padding: 6px 12px; font-size: .95rem; }
    }	

/* Новости */
.news-content h3 {
    color: var(--color-light);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.news-item {
    background: var(--color-dark-2);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(158, 121, 103, 0.1);
    display: flex;
    gap: 2rem;
    transition: all 0.3s ease;
}

.news-item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 5px 15px rgba(158, 121, 103, 0.1);
}

.news-date {
    min-width: 120px;
    text-align: center;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.news-content-item h4 {
    color: var(--color-light);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.news-content-item p {
    color: var(--color-light-2);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.news-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.news-link:hover {
    color: var(--color-primary-light);
}

/* Концерты */
.concerts-content h3 {
    color: var(--color-light);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.info-block {
    background: var(--color-dark-2);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(158, 121, 103, 0.1);
}

.info-block i {
    color: var(--color-primary);
    font-size: 1.5rem;
}

.info-block p {
    margin: 0;
    color: var(--color-light-2);
    font-size: 1.1rem;
}

.concerts-content h4 {
    color: var(--color-primary);
    font-size: 1.5rem;
    margin: 2rem 0 1.5rem;
    font-weight: 600;
}

.memorial-concerts {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.concert-item {
    background: var(--color-dark-2);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(158, 121, 103, 0.1);
    display: flex;
    gap: 2rem;
    transition: all 0.3s ease;
}

.concert-item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 5px 15px rgba(158, 121, 103, 0.1);
}

.concert-date {
    min-width: 120px;
    text-align: center;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 1rem;
}

.concert-info h5 {
    color: var(--color-light);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.concert-info p {
    color: var(--color-light-2);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.historical-info {
    background: var(--color-dark-2);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(158, 121, 103, 0.1);
}

.historical-info p {
    color: var(--color-light-2);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.historical-info ul {
    color: var(--color-light-2);
    line-height: 1.6;
}

.historical-info li {
    margin-bottom: 0.5rem;
}

/* Соцсети */
.social-content h3 {
    color: var(--color-light);
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.official-info {
    margin-bottom: 3rem;
}

.social-links-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
}

.social-category h4 {
    color: var(--color-primary);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.social-links-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link-item {
    background: var(--color-dark-2);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(158, 121, 103, 0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.social-link-item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 5px 15px rgba(158, 121, 103, 0.1);
    transform: translateY(-2px);
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    flex-shrink: 0;
}

.social-icon.wikipedia {
    background: #000000;
}

.social-icon.official {
    background: var(--color-primary);
}

.social-icon.vk {
    background: #4680C2;
}

.social-icon.ok {
    background: #EE8208;
}

.social-icon.youtube {
    background: #FF0000;
}

.social-icon.telegram {
    background: #0088CC;
}

.social-icon.spotify {
    background: #1DB954;
}

.social-icon.yandex {
    background: #FFCC00;
    color: #000;
}

.social-icon.apple {
    background: #000000;
}

.social-info {
    flex: 1;
}

.social-info h5 {
    color: var(--color-light);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.social-info p {
    color: var(--color-light-2);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.social-url {
    color: var(--color-muted);
    font-size: 0.9rem;
    font-family: monospace;
}

.social-link-item .fa-external-link-alt {
    color: var(--color-muted);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.social-link-item:hover .fa-external-link-alt {
    color: var(--color-primary);
}

.social-footer {
    background: var(--color-dark-2);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(158, 121, 103, 0.1);
}

.share-block h4 {
    color: var(--color-light);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    background: transparent;
    border: 2px solid rgba(158, 121, 103, 0.3);
    color: var(--color-light-2);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.share-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.share-btn.vk-share:hover {
    border-color: #4680C2;
    color: #4680C2;
}

.share-btn.ok-share:hover {
    border-color: #EE8208;
    color: #EE8208;
}

.share-btn.telegram-share:hover {
    border-color: #0088CC;
    color: #0088CC;
}

    .share-btn.copy-link:hover {
        border-color: var(--color-primary);
        color: var(--color-primary);
    }

/* Стили для страницы новости */
.news-article {
    background: var(--color-dark-2);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(158, 121, 103, 0.1);
}

.article-header {
    margin-bottom: 3rem;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(158, 121, 103, 0.2);
}

.article-meta span {
    color: var(--color-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.article-category {
    background: var(--color-primary);
    color: white !important;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-weight: 500;
}

.article-title {
    color: var(--color-light);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.article-lead {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--color-light-2);
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(158, 121, 103, 0.1);
    border-radius: 15px;
    border-left: 4px solid var(--color-primary);
}

.article-image-main {
    margin: 2rem 0;
    text-align: center;
    max-width: 100%;
    overflow: hidden;
}

.article-image-main img {
    max-width: 800px;
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid rgba(158, 121, 103, 0.2);
}

.article-image-main img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--color-primary);
}

.article-image-main figcaption {
    margin-top: 1rem;
    color: var(--color-muted);
    font-style: italic;
    font-size: 0.9rem;
}

.photo-credit {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--color-muted);
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-light-2);
}

.article-content h2 {
    color: var(--color-primary);
    font-size: 1.8rem;
    font-weight: 600;
    margin: 2.5rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(158, 121, 103, 0.3);
}

.article-content h3 {
    color: var(--color-light);
    font-size: 1.4rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
}

.article-content h4 {
    color: var(--color-light);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem 0;
}

.lead-paragraph {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-light);
    margin-bottom: 2rem;
}

.article-quote {
    background: rgba(158, 121, 103, 0.1);
    border-left: 4px solid var(--color-primary);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-radius: 0 15px 15px 0;
    position: relative;
}

.article-quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--color-primary);
    position: absolute;
    top: -10px;
    left: 10px;
    font-family: serif;
}

.article-quote p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-light);
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.article-quote cite {
    color: var(--color-primary);
    font-weight: 600;
    font-style: normal;
    display: block;
    text-align: right;
}

.article-quote-final {
    background: linear-gradient(135deg, rgba(158, 121, 103, 0.2), rgba(158, 121, 103, 0.05));
    border: 1px solid rgba(158, 121, 103, 0.3);
    margin: 3rem 0;
}

.article-image-inline {
    margin: 1.5rem 0;
}

.article-image-left {
    float: left;
    width: 300px;
    margin: 0 2rem 1rem 0;
}

.article-image-left img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(158, 121, 103, 0.2);
}

.article-image-left img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--color-primary);
}

.article-image-left figcaption {
    font-size: 0.8rem;
    color: var(--color-muted);
    margin-top: 0.5rem;
    text-align: center;
}

.article-list {
    margin: 1.5rem 0;
    padding-left: 0;
}

.article-list li {
    background: rgba(158, 121, 103, 0.05);
    margin-bottom: 0.8rem;
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    border-left: 3px solid var(--color-primary);
    list-style: none;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(158, 121, 103, 0.15), rgba(158, 121, 103, 0.05));
    border: 1px solid rgba(158, 121, 103, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.highlight-box h4 {
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.highlight-box ul {
    margin: 0;
    padding-left: 1.5rem;
}

.highlight-box li {
    margin-bottom: 0.8rem;
    color: var(--color-light-2);
}

.article-gallery {
    margin: 3rem 0;
}

.article-gallery h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    text-align: center;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid rgba(158, 121, 103, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.gallery-item img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: var(--color-primary);
}

.gallery-item figcaption {
    margin-top: 0.8rem;
    color: var(--color-muted);
    font-size: 0.9rem;
}

.testimonials {
    margin: 2rem 0;
}

.testimonial {
    background: rgba(158, 121, 103, 0.08);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--color-primary);
}

.testimonial blockquote {
    margin-bottom: 1rem;
    color: var(--color-light-2);
    font-style: italic;
}

.testimonial cite {
    color: var(--color-primary);
    font-weight: 600;
    font-style: normal;
}

.info-box {
    background: var(--color-dark-3);
    border: 1px solid rgba(158, 121, 103, 0.2);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.info-box h4 {
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.info-item {
    color: var(--color-light-2);
}

.info-item strong {
    color: var(--color-light);
    display: block;
    margin-bottom: 0.5rem;
}

.article-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(158, 121, 103, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}

.article-tags h5,
.article-share h5 {
    color: var(--color-light);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.tag {
    background: rgba(158, 121, 103, 0.2);
    color: var(--color-primary);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    display: inline-block;
    transition: all 0.3s ease;
}

.tag:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
}

.article-share .share-buttons {
    display: flex;
    gap: 0.8rem;
}

.article-share .share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.related-news {
    margin-top: 4rem;
}

.related-news h3 {
    color: var(--color-light);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.news-card {
    background: var(--color-dark-2);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(158, 121, 103, 0.1);
    height: 100%;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--color-primary);
}

.news-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-bottom: 1px solid rgba(158, 121, 103, 0.1);
}

.news-card:hover .news-card-img {
    transform: scale(1.05);
}

.news-card-content {
    padding: 1.5rem;
}

.news-card-content h5 {
    color: var(--color-light);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.news-date {
    color: var(--color-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Адаптивность для карточки исполнителя */
@media (max-width: 768px) {
    .artist-profile {
        padding: 2rem;
    }
    
    .artist-profile .artist-info {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .artist-profile .artist-name {
        font-size: 2.5rem;
    }
    
    .photo-placeholder {
        width: 200px;
        height: 200px;
        font-size: 5rem;
    }
    
    .photo-placeholder img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .artist-profile .artist-stats {
        gap: 1rem;
        justify-content: center;
    }
    
    .nav-tabs .nav-link {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
    
    .albums-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .album-cover {
        width: 100px;
        height: 100px;
    }
    
    .news-item,
    .concert-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .news-date,
    .concert-date {
        min-width: auto;
        text-align: left;
    }
    
    /* Адаптивность для кнопок поделиться в статье */
    .article-share .share-buttons {
        justify-content: center;
        gap: 0.6rem;
    }
    
    .article-share .share-btn {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .artist-profile {
        padding: 1.5rem;
    }
    
    .artist-profile .artist-name {
        font-size: 2rem;
    }
    
    .photo-placeholder {
        width: 150px;
        height: 150px;
        font-size: 4rem;
    }
    
    .photo-placeholder img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .artist-profile .artist-actions {
        flex-direction: column;
    }
    
    .artist-profile .artist-stats {
        justify-content: space-around;
    }
    
    .artist-profile .stat-number {
        font-size: 1.5rem;
    }
    
    .albums-grid {
        grid-template-columns: 1fr;
    }
    
    .album-cover {
        width: 80px;
        height: 80px;
    }
    
    .social-link-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .social-info {
        text-align: center;
    }
    
    .share-buttons {
        justify-content: center;
    }
    
    .social-footer .share-btn {
        flex: 1;
        min-width: 120px;
        justify-content: center;
    }
    
    /* Адаптивность для страницы новости */
    .news-article {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .article-lead {
        font-size: 1.1rem;
        padding: 1rem;
    }
    
    .article-meta {
        gap: 1rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .article-content h2 {
        font-size: 1.5rem;
    }
    
    .article-content h3 {
        font-size: 1.3rem;
    }
    
    .article-image-main img {
        max-width: 100%;
        max-height: 300px;
        border-radius: 10px;
    }
    
    .article-image-left {
        float: none;
        width: 100%;
        margin: 1rem 0;
    }
    
    .article-quote {
        padding: 1rem 1.5rem;
        margin: 1.5rem 0;
    }
    
    .article-quote::before {
        font-size: 3rem;
        top: -5px;
        left: 5px;
    }
    
    .article-quote p {
        padding-left: 1.5rem;
    }
    
    .highlight-box {
        padding: 1.5rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .article-footer {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .article-share .share-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .article-share .share-btn {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        flex-shrink: 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .related-news h3 {
        font-size: 1.5rem;
    }
}

/* Кастомный скроллбар */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-dark-2);
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary-light);
}

/* ===== СТИЛИ ТОЛЬКО ДЛЯ СТРАНИЦЫ ALL-NEWS.HTML ===== */

/* Стили применяются только к body с классом news-page */
body.news-page .main-content {
    background: var(--color-dark);
    padding-top: 6rem;
    min-height: 100vh;
}

/* Хлебные крошки для страницы новостей */
body.news-page .breadcrumb-nav {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

body.news-page .breadcrumb {
    background: transparent;
    padding: 0.75rem 0;
    border-radius: 0;
    border: none;
    font-size: 0.9rem;
}

body.news-page .breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: var(--color-muted);
    font-size: 1.1rem;
    font-weight: 500;
    vertical-align: middle;
    line-height: 1;
}

body.news-page .breadcrumb-item a {
    color: var(--color-light-2);
    text-decoration: none;
    transition: color 0.3s ease;
}

body.news-page .breadcrumb-item a:hover {
    color: var(--color-primary);
    text-decoration: none;
}

body.news-page .breadcrumb-item.active {
    color: var(--color-primary);
    font-weight: 500;
}

body.news-page .breadcrumb-item i {
    margin-right: 0.25rem;
}

/* Заголовок страницы новостей - простой без фона */
body.news-page .page-header {
    margin-bottom: 3rem;
    text-align: center;
    padding: 2rem 0;
}

body.news-page .page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-light);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

body.news-page .page-description {
    color: var(--color-light-2);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

body.news-page .page-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

body.news-page .stats-item {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: var(--color-muted);
    background: var(--color-dark-2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    border: 1px solid rgba(158, 121, 103, 0.2);
}

body.news-page .stats-item i {
    margin-right: 0.5rem;
}

/* Фильтры новостей */
body.news-page .news-filters {
    background: var(--color-dark-2);
    border: 1px solid rgba(158, 121, 103, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

body.news-page .filter-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

body.news-page .filter-label {
    font-weight: 500;
    color: var(--color-light);
    margin-bottom: 0;
    white-space: nowrap;
}

body.news-page .filter-select {
    border: 1px solid rgba(158, 121, 103, 0.3);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    background-color: var(--color-dark-3);
    color: var(--color-light);
    transition: all 0.3s ease;
}

body.news-page .filter-select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.2rem rgba(158, 121, 103, 0.25);
    background-color: var(--color-dark-3);
    color: var(--color-light);
}

body.news-page .filter-select option {
    background-color: var(--color-dark-3);
    color: var(--color-light);
}

/* Список новостей */
body.news-page .news-list {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Карточки новостей - специфичные для страницы новостей */
body.news-page .news-card {
    background: var(--color-dark-2);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: row;
    min-height: 200px;
    border: 1px solid rgba(158, 121, 103, 0.1);
}

body.news-page .news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border-color: var(--color-primary);
}

body.news-page .news-card-image {
    position: relative;
    flex: 0 0 300px;
    overflow: hidden;
}

body.news-page .news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

body.news-page .news-card:hover .news-card-image img {
    transform: scale(1.05);
}

body.news-page .news-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--color-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

body.news-page .news-card-content {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    background: var(--color-dark-2);
}

body.news-page .news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--color-muted);
}

body.news-page .news-views {
    display: flex;
    align-items: center;
    color: var(--color-muted);
}

body.news-page .news-title {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.3;
}

body.news-page .news-title a {
    color: var(--color-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

body.news-page .news-title a:hover {
    color: var(--color-primary);
}

body.news-page .news-excerpt {
    color: var(--color-light-2);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

body.news-page .news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

body.news-page .news-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

body.news-page .news-tag {
    background: rgba(158, 121, 103, 0.2);
    color: var(--color-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(158, 121, 103, 0.3);
}

/* Кнопки в новостях */
body.news-page .news-footer .btn {
    white-space: nowrap;
}

body.news-page .news-footer .btn-outline-primary {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: transparent;
}

body.news-page .news-footer .btn-outline-primary:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

/* Информация о пагинации */
body.news-page .pagination-info {
    margin-top: 2rem;
    text-align: center;
}

body.news-page .pagination-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-muted);
}

/* Пагинация для новостей */
body.news-page .pagination-nav {
    margin-top: 3rem;
    margin-bottom: 2rem;
}

body.news-page .pagination .page-link {
    background-color: var(--color-dark-3);
    border: 1px solid rgba(158, 121, 103, 0.2);
    color: var(--color-light-2);
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin: 0 0.25rem;
}

body.news-page .pagination .page-link:hover,
body.news-page .pagination .page-item.active .page-link {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(158, 121, 103, 0.3);
}

body.news-page .pagination .page-item.disabled .page-link {
    background-color: var(--color-dark-3);
    border-color: rgba(158, 121, 103, 0.1);
    color: var(--color-muted);
    opacity: 0.5;
}

/* Адаптивность для страницы новостей */
@media (max-width: 768px) {
    body.news-page .main-content {
        padding-top: 5rem;
    }
    
    body.news-page .page-header {
        padding: 1.5rem 0;
    }
    
    body.news-page .page-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    body.news-page .page-stats {
        gap: 1rem;
    }
    
    body.news-page .stats-item {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    body.news-page .news-filters {
        padding: 1rem;
    }
    
    body.news-page .news-filters .row {
        gap: 1rem;
    }
    
    body.news-page .filter-group {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }
    
    body.news-page .news-card {
        flex-direction: column;
        min-height: auto;
    }
    
    body.news-page .news-card-image {
        flex: none;
        height: 160px;
    }
    
    body.news-page .news-card-content {
        padding: 1rem;
    }
    
    body.news-page .news-title {
        font-size: 1.2rem;
    }
    
    body.news-page .news-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    body.news-page .news-tags {
        order: 1;
        width: 100%;
    }
    
    body.news-page .news-footer .btn {
        align-self: stretch;
        text-align: center;
    }
}

@media (max-width: 480px) {
    body.news-page .page-header {
        padding: 1rem 0;
        margin-bottom: 1.5rem;
    }
    
    body.news-page .page-title {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    body.news-page .page-description {
        font-size: 1rem;
    }
    
    body.news-page .page-stats {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    body.news-page .stats-item {
        justify-content: center;
    }
    
    body.news-page .news-filters {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    body.news-page .news-card-image {
        height: 140px;
    }
    
    body.news-page .news-card-content {
        padding: 0.75rem;
    }
    
    body.news-page .news-title {
        font-size: 1.1rem;
    }
    
    body.news-page .news-excerpt {
        font-size: 0.9rem;
    }
    
    body.news-page .pagination .page-link {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

/* ===== СТИЛИ ДЛЯ СТРАНИЦЫ КОНТАКТОВ ===== */

/* Секция формы обратной связи */
.contact-form-section {
    background: var(--color-dark-2);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(158, 121, 103, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-form-section .section-title {
    color: var(--color-light);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-form-section .section-description {
    color: var(--color-light-2);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Стили формы */
.contact-form .form-label {
    color: var(--color-light);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
    background-color: var(--color-dark-3);
    border: 2px solid rgba(158, 121, 103, 0.2);
    color: var(--color-light);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    background-color: var(--color-dark-3);
    border-color: var(--color-primary);
    color: var(--color-light);
    box-shadow: 0 0 0 0.2rem rgba(158, 121, 103, 0.25);
}

.contact-form .form-control::placeholder {
    color: var(--color-muted);
}

.contact-form .form-select option {
    background-color: var(--color-dark-3);
    color: var(--color-light);
}

.contact-form .form-text {
    color: var(--color-muted);
    font-size: 0.9rem;
}

.contact-form .form-check-input {
    background-color: var(--color-dark-3);
    border: 2px solid rgba(158, 121, 103, 0.3);
}

.contact-form .form-check-input:checked {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.contact-form .form-check-label {
    color: var(--color-light-2);
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.form-actions .btn {
    padding: 0.75rem 2rem;
    font-weight: 500;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.form-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Секция контактной информации */
.contact-info-section {
    background: var(--color-dark-2);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(158, 121, 103, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.contact-info-section .section-title {
    color: var(--color-light);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

/* Элементы контактной информации */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: var(--color-dark-3);
    border-radius: 15px;
    border: 1px solid rgba(158, 121, 103, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.contact-icon.telegram {
    background: #0088CC;
}

.contact-details h4 {
    color: var(--color-light);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--color-light-2);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.contact-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.contact-link:hover {
    color: var(--color-primary-light);
    text-decoration: none;
}

.time-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.time-list li {
    color: var(--color-light-2);
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.time-list li::before {
    content: "•";
    color: var(--color-primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* FAQ секция */
.faq-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(158, 121, 103, 0.2);
}

.faq-section .section-title {
    color: var(--color-light);
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 3rem;
}

/* Стили аккордеона */
.accordion-item {
    background: var(--color-dark-2);
    border: 1px solid rgba(158, 121, 103, 0.2);
    border-radius: 15px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-header {
    margin-bottom: 0;
}

.accordion-button {
    background: var(--color-dark-2);
    color: var(--color-light);
    border: none;
    padding: 1.5rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 15px !important;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: var(--color-primary);
    color: white;
    box-shadow: none;
}

.accordion-button:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.2rem rgba(158, 121, 103, 0.25);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e5e5e5'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    background: var(--color-dark-3);
    color: var(--color-light-2);
    padding: 2rem;
    line-height: 1.6;
    border-top: 1px solid rgba(158, 121, 103, 0.1);
}

/* Анимации для формы */
.contact-form .form-control.is-valid {
    border-color: #28a745;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='m2.3 6.73.13-.13L6.23 2.8l-.13-.13a.5.5 0 0 1 .13-.13L7.36 3.7l.13.13-.13.13L3.56 7.76l-.13.13-.13-.13L.8 5.26l-.13-.13.13-.13L1.93 3.87l.13-.13.13.13z'/%3e%3c/svg%3e");
}

.contact-form .form-control.is-invalid {
    border-color: #dc3545;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath d='m5.8 4.6 2.4 2.4m0-2.4L5.8 7'/%3e%3c/svg%3e");
}

.form-feedback {
    color: var(--color-muted);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.form-feedback.valid-feedback {
    color: #28a745;
}

.form-feedback.invalid-feedback {
    color: #dc3545;
}

/* Адаптивность для страницы контактов */
@media (max-width: 768px) {
    .contact-form-section,
    .contact-info-section {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .contact-form-section .section-title,
    .contact-info-section .section-title {
        font-size: 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
        align-items: center;
    }
    
    .contact-icon {
        margin: 0 auto;
    }
    
    .contact-details {
        text-align: center;
        width: 100%;
    }
    
    .contact-details h4,
    .contact-details p,
    .contact-link {
        text-align: center;
    }
    
    .time-list {
        text-align: left;
        display: inline-block;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-actions .btn {
        width: 100%;
        text-align: center;
    }
    
    .faq-section {
        margin-top: 3rem;
        padding-top: 2rem;
    }
    
    .faq-section .section-title {
        font-size: 1.8rem;
    }
    
    .accordion-button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .accordion-body {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .contact-form-section,
    .contact-info-section {
        padding: 1.5rem;
    }
    
    .contact-form-section .section-title,
    .contact-info-section .section-title {
        font-size: 1.3rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .contact-details h4 {
        font-size: 1.1rem;
    }
    
    .accordion-button {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    .accordion-body {
        padding: 1rem;
    }
}

/* ===== СТИЛИ НОВОГО ФУТЕРА ===== */
.footer-brand .footer-logo {
    color: #9e7967;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
}

.footer-brand .footer-logo i {
    color: #9e7967;
}

.footer-description {
    color: #b0b0b0;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.contact-buttons {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.8rem;
    background: rgba(158, 121, 103, 0.1);
    border: 1px solid rgba(158, 121, 103, 0.3);
    border-radius: 6px;
    color: #e8e6e9;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    gap: 0.4rem;
}

.contact-btn:hover {
    background: rgba(158, 121, 103, 0.2);
    border-color: rgba(158, 121, 103, 0.5);
    color: #9e7967;
    transform: translateY(-2px);
}

.contact-btn.telegram {
    border-color: rgba(0, 136, 204, 0.3);
}

.contact-btn.telegram:hover {
    background: rgba(0, 136, 204, 0.1);
    border-color: rgba(0, 136, 204, 0.5);
    color: #0088cc;
}

.contact-btn.email {
    border-color: rgba(158, 121, 103, 0.3);
}

.contact-btn.email:hover {
    background: rgba(158, 121, 103, 0.2);
    border-color: rgba(158, 121, 103, 0.5);
    color: #9e7967;
}

.footer-title {
    color: #9e7967;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.7rem;
    padding-bottom: 0.3rem;
    border-bottom: 2px solid rgba(158, 121, 103, 0.2);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.3rem;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
    display: block;
    padding: 0.1rem 0;
}

.footer-links a:hover {
    color: #9e7967;
    text-decoration: none;
}

.footer-info .disclaimer {
    color: #888;
    font-size: 0.75rem;
    line-height: 1.5;
    padding: 0.7rem;
    background: rgba(158, 121, 103, 0.05);
    border-radius: 6px;
    border-left: 3px solid rgba(158, 121, 103, 0.3);
    margin: 0;
}

.footer-info .disclaimer i {
    color: #9e7967;
}

.footer-divider {
    border-color: rgba(158, 121, 103, 0.2) !important;
    margin: 1.5rem 0 1rem 0;
}

.footer-bottom {
    padding: 0.7rem 0;
}

.copyright {
    color: #888;
    font-size: 0.8rem;
    margin: 0;
}

.copyright span {
    color: #9e7967;
    font-weight: 600;
}

/* Адаптивность для футера */
@media (max-width: 768px) {
    .contact-buttons {
        justify-content: center;
    }
    
    .contact-btn {
        flex: 1;
        justify-content: center;
        min-width: 120px;
    }
    
    .footer-title {
        text-align: center;
        font-size: 1.1rem;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-info .disclaimer {
        font-size: 0.8rem;
        padding: 0.8rem;
    }
}

@media (max-width: 576px) {
    .footer-brand .footer-logo {
        justify-content: center;
        font-size: 1.3rem;
    }
    
    .footer-description {
        text-align: center;
        font-size: 0.9rem;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-btn {
        width: 100%;
        max-width: 200px;
    }
}

/* News content images and alignment */
.news-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 12px 0;
}
.news-content figure {
    margin: 0;
}
.align-left {
    float: left;
    margin: 0 16px 12px 0;
    max-width: 50%;
}
.align-right {
    float: right;
    margin: 0 0 12px 16px;
    max-width: 50%;
}
.align-center {
    text-align: center;
    display: block;
    margin: 12px auto;
}

.albums-content .artist-albums-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
@media (max-width: 1200px) {
    .albums-content .artist-albums-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 992px) {
    .albums-content .artist-albums-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .albums-content .artist-albums-grid { grid-template-columns: 1fr; gap: 14px; }
    .albums-content .album-cover-large { height: 180px; border-radius: 12px; overflow: hidden; }
    .albums-content .album-details { padding: 12px; }
    .albums-content .album-title-new { font-size: 1rem; line-height: 1.3; min-height: auto; }
    .albums-content .album-meta-new { padding-top: 8px; }
    .albums-content .play-btn { width: 44px; height: 44px; box-shadow: 0 4px 12px rgba(158,121,103,.4); }
}

/* Мобильная квадратная обложка и ограничение ширины, чтобы не тянуться на весь экран */
@media (max-width: 576px) {
    .albums-content .album-card-new { align-items: center; }
    .albums-content .album-cover-large {
        width: 85%;               /* не на всю ширину, аккуратнее смотрится */
        max-width: 320px;         /* предел, чтобы на больших телефонах не разъезжалось */
        aspect-ratio: 1 / 1;      /* почти квадратная обложка */
        height: auto;             /* высоту задаёт aspect-ratio */
        margin: 0 auto 0.75rem;   /* центрируем */
        overflow: hidden;
        border-radius: 12px;
    }
    .albums-content .album-cover-large img {
        width: 100%;
        height: 100%;
        object-fit: cover;        /* сохраняем пропорции, без искажений */
        display: block;
    }
}

/* Стили для информационной карточки артиста на странице новостей */
.artist-info-card {
    background: var(--color-dark-2);
    border: 1px solid var(--color-primary);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.artist-info-card .artist-photo {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 2px solid var(--color-primary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.artist-info-card .artist-name {
    color: var(--color-primary);
    margin-bottom: 10px;
    font-size: 1.4rem;
    font-weight: 600;
}

.artist-info-card .artist-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.artist-info-card .stat-item {
    color: var(--color-light-2);
    font-size: 0.9rem;
}

.artist-info-card .stat-item i {
    color: var(--color-secondary);
}

.artist-info-card .artist-actions .btn {
    font-size: 0.85rem;
    padding: 6px 12px;
}

.artist-info-card .btn-primary {
    background: var(--gradient-accent);
    border: none;
    color: white;
}

.artist-info-card .btn-primary:hover {
    background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-secondary-light) 100%);
    transform: translateY(-1px);
}

.artist-info-card .btn-outline-secondary {
    border-color: var(--color-muted);
    color: var(--color-light-2);
}

.artist-info-card .btn-outline-secondary:hover {
    background-color: var(--color-muted);
    border-color: var(--color-muted);
    color: white;
}

/* Адаптивность для информационной карточки артиста */
@media (max-width: 768px) {
    .artist-info-card {
        padding: 15px;
    }
    
    .artist-info-card .artist-photo {
        width: 60px;
        height: 60px;
    }
    
    .artist-info-card .artist-name {
        font-size: 1.2rem;
    }
    
    .artist-info-card .artist-stats {
        gap: 10px;
        flex-direction: column;
    }
    
    .artist-info-card .artist-actions {
        margin-top: 10px;
    }
    
    .artist-info-card .artist-actions .btn {
        width: 100%;
        margin-bottom: 5px;
    }
    
    .artist-info-card .artist-actions .btn.ms-2 {
        margin-left: 0 !important;
    }
}