.labels-page .main-content {
    padding-top: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.labels-container .content-header {
    margin-bottom: 24px;
    padding: 0;
    background: transparent;
    border: none;
}

.labels-container .content-header .header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.labels-container .content-header .page-title {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.labels-container .content-header .page-title h1 {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    color: #ffffff;
    line-height: 1.25;
}

.labels-container .content-header .stats-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 4px;
}

.labels-container .content-header .stat-item {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.labels-container .content-header .stat-number {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color, #00d4ff);
    line-height: 1;
}

.labels-container .content-header .stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.labels-container .content-header .header-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.labels-container .content-header .labels-apply-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #0a0a0a;
    background: var(--primary-color, #22c55e);
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.labels-container .content-header .labels-apply-cta:hover {
    opacity: 0.92;
    transform: translateY(-1px);
    color: #0a0a0a;
}

.labels-container .content-header .sort-control {
    display: flex;
    align-items: center;
    gap: 8px;
}

.labels-container .content-header .sort-control .sort-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 400;
}

.labels-container .content-header .sort-control .sort-label svg {
    width: 14px;
    height: 14px;
}

.labels-container .content-header .sort-select {
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
    font-weight: 400;
    outline: none;
    transition: all 0.2s;
    min-width: 120px;
}

.labels-container .content-header .sort-select:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.labels-container .content-header .sort-select:focus {
    border-color: var(--primary-color);
}


.label-detail-container {
    width: 100%;
    max-width: var(--container-max-width, 1600px);
    margin: 0 auto;
    padding: calc(var(--header-height, 60px) + 20px) var(--container-padding) 0;
    background: transparent !important;
}

.label-detail-container .content-header {
    margin-bottom: 24px;
    padding: 0;
    background: transparent;
    border: none;
}

.label-detail-container .content-header .header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.label-detail-container .content-header .page-title {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.label-detail-container .content-header .label-title-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
}

.label-detail-container .content-header .label-logo-small {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
}

.label-detail-container .content-header .label-logo-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.label-detail-container .content-header .label-title-info {
    flex: 1;
}

.label-detail-container .content-header .page-title h1 {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    color: #ffffff;
    line-height: 1.25;
}

.label-detail-container .content-header .stats-info {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 4px;
}

.label-detail-container .content-header .stat-item {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.label-detail-container .content-header .stat-number {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color, #00d4ff);
    line-height: 1;
}

.label-detail-container .content-header .stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.label-detail-container .content-header .stat-divider {
    color: rgba(255, 255, 255, 0.2);
}

.label-detail-container .content-header .header-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.label-detail-container .content-header .btn-primary,
.label-detail-container .content-header .btn-secondary {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
    outline: none;
}

.label-detail-container .content-header .btn-primary {
    background: var(--primary-color, #00d4ff);
    color: #000000;
}

.label-detail-container .content-header .btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.label-detail-container .content-header .btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.label-detail-container .content-header .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}


.label-detail-container .label-social {
    margin: 24px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
}

.label-detail-container .label-social h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 12px 0;
}

.label-detail-container .label-social .social-list {
    display: flex;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.label-detail-container .label-social .social-list a {
    color: var(--primary-color, #00d4ff);
    text-decoration: none;
    transition: opacity 0.2s;
}

.label-detail-container .label-social .social-list a:hover {
    opacity: 0.8;
}

.label-detail-container .label-section {
    margin: 32px 0;
}

.label-detail-container .label-section h2 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 16px 0;
}


.label-detail-container .artists-grid,
.label-detail-container .albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 200px));
    gap: 16px;
    justify-content: start;
}

.label-detail-container .artist-card,
.label-detail-container .album-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, transform 0.2s;
    overflow: hidden;
    text-align: center;
    display: block;
    color: inherit;
    text-decoration: none;
}
.label-detail-container a.artist-card,
.label-detail-container a.artist-card:hover,
.label-detail-container a.artist-card:visited,
.label-detail-container a.album-card,
.label-detail-container a.album-card:hover,
.label-detail-container a.album-card:visited {
    color: inherit;
    text-decoration: none;
}

.label-detail-container .artist-card:hover,
.label-detail-container .album-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.16);
    transform: translateY(-2px);
}

.label-detail-container .artist-card:focus-visible {
    outline: 2px solid var(--primary-color, #22c55e);
    outline-offset: 2px;
}

.label-detail-container .artist-card .artist-card-inner {
    padding: 16px 14px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-height: 0;
}

.label-detail-container .artist-card .avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.label-detail-container .artist-card .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.label-detail-container .album-card .cover {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
}

.label-detail-container .album-card .album-info,
.label-detail-container .artist-card .info {
    margin-top: 8px;
}

.label-detail-container .artist-card .info {
    width: 100%;
    min-width: 0;
}

.label-detail-container .artist-card .info .name,
.label-detail-container .album-card .album-info .title {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
    font-size: 15px;
    line-height: 1.3;
}

.label-detail-container .artist-card .info .genre,
.label-detail-container .album-card .album-info .artist {
    color: rgba(255, 255, 255, 0.45);
    font-size: 12px;
    line-height: 1.45;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

.label-detail-container .tracks-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}

.label-detail-container .track-item {
    display: flex;
    gap: 12px;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.label-detail-container .track-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.label-detail-container .track-item .cover {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
}

.label-detail-container .track-info .title {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.label-detail-container .track-info .artist {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.label-detail-container .track-info .price {
    color: var(--primary-color, #00d4ff);
    font-weight: 600;
    margin-top: 4px;
}

.label-detail-container .empty {
    color: rgba(255, 255, 255, 0.3);
    text-align: center;
    padding: 40px;
    font-size: 14px;
}

.labels-page{
    --labels-container-pt: 0px;
    --labels-sidebar-offset: calc(var(--header-height, 64px) + 16px);
    --labels-sidebar-mt: 16px;
}

.labels-page .labels-container {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 20px;
    padding: 80px var(--container-padding) 0;
    width: 100%;
    max-width: var(--container-max-width, 1600px);
    margin: 0 auto;
    box-sizing: border-box;
}

.labels-page .sidebar-filters{
    top: var(--labels-sidebar-offset);
    margin-top: var(--labels-sidebar-mt);
}

.labels-page .filter-count { color: var(--text-secondary); font-size: 12px; }
.labels-page .more-filters { margin-top: 10px; }
.labels-page .more-genres { color: #1976d2; font-size: 13px; cursor: pointer; }
.labels-page .more-genres:hover { text-decoration: underline; }

.labels-page .search-input-wrapper {
    width: 100%;
    padding: 4px 0;
}

.labels-page .search-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #ffffff;
    padding: 10px 12px;
    font-size: 13px;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.labels-page .search-input:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.12);
}

.labels-page .search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb, 34, 197, 94), 0.14);
}

.labels-page .search-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.labels-page .breadcrumbs {
    font-size:15px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.labels-page .promo-banner {
    background: var(--bg-tertiary);
    color: white;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 20px;
}

.labels-page .promo-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.labels-page .promo-title { font-size: 22px; font-weight: 700; margin: 0; }
.labels-page .promo-cta { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.labels-page .promo-btn {
    width: 32px;
    height: 32px;
    background-color: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.labels-page .results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.labels-page .sort-control { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #666; }
.labels-page .sort-select { padding: 6px 10px; border: 1px solid #ddd; border-radius: 4px; background: white; font-size: 14px; }
.labels-page .results-count { font-size: 14px; color: #666; }

.labels-page .labels-list { display: flex; flex-direction: column; gap: 0; }
.labels-page .label-item.label-item-link {
    display: flex;
    align-items: center;
    padding: 14px 12px;
    margin: 0 -12px;
    border-radius: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-decoration: none;
    color: inherit;
    transition: background 0.2s, border-color 0.2s;
}
.labels-page .label-item.label-item-link:hover {
    background: rgba(255, 255, 255, 0.04);
    border-bottom-color: transparent;
}
.labels-page .label-item.label-item-link:last-child {
    border-bottom: none;
}
.labels-page .labels-empty-state {
    padding: 48px 24px;
    text-align: center;
    border: 1px dashed rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
}
.labels-page .labels-empty-title {
    margin: 0 0 8px;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}
.labels-page .labels-empty-hint {
    margin: 0 0 16px;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.45);
}
.labels-page .labels-empty-reset {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #0a0a0a;
    background: var(--primary-color, #22c55e);
    text-decoration: none;
}
.labels-page .labels-empty-reset:hover {
    opacity: 0.92;
}
.labels-page .label-logo { width: 52px; height: 52px; position: relative; margin-right: 16px; overflow: hidden; border-radius: 10px; flex-shrink: 0; background: rgba(255, 255, 255, 0.05); }
.labels-page .label-logo img { width: 100%; height: 100%; object-fit: cover; }
.labels-page .label-country { position: absolute; bottom: 0; right: 0; width: 16px; height: 16px; border-radius: 50%; background-size: cover; background-position: center; border: 1px solid white; }
.labels-page .label-country.de { background-image: url('../images/flags/de.svg'); }
.labels-page .label-country.es { background-image: url('../images/flags/es.svg'); }
.labels-page .label-country.uk { background-image: url('../images/flags/uk.svg'); }
.labels-page .label-country.fr { background-image: url('../images/flags/fr.svg'); }
.labels-page .label-country.nl { background-image: url('../images/flags/nl.svg'); }

.labels-page .label-info { flex: 1; min-width: 0; }
.labels-page .label-name { font-size: 16px; font-weight: 600; color: rgba(255, 255, 255, 0.95); margin: 0 0 6px 0; }
.labels-page .label-stats { display: flex; gap: 12px; font-size: 13px; color: rgba(255, 255, 255, 0.45); flex-wrap: wrap; }
.labels-page .label-albums, .labels-page .label-tracks { position: relative; }
.labels-page .label-albums::after { content: "•"; position: absolute; right: -8px; top: 0; color: rgba(255, 255, 255, 0.25); }
.labels-page .label-actions { margin-left: 16px; flex-shrink: 0; }
.labels-page .btn-follow-pseudo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    pointer-events: none;
}
.labels-page .label-item-link:hover .btn-follow-pseudo {
    background: var(--primary-color, #22c55e);
    border-color: transparent;
    color: #0a0a0a;
}

@media (max-width: 992px) {
    .labels-page .labels-container { grid-template-columns: 1fr; }
    .labels-page .sidebar-filters { order: 2; position: static !important; width: 100% !important; margin-bottom: 20px; left: auto !important; }
    .labels-page .main-content { order: 1; }
}

@media (max-width: 768px) {
    .labels-page .promo-content { flex-direction: column; align-items: flex-start; gap: 10px; }
    .labels-page .results-header { flex-direction: column; align-items: flex-start; gap: 10px; }
}

@media (max-width: 480px) {
    .labels-page .label-item { flex-wrap: wrap; }
    .labels-page .label-actions { margin-left: 0; margin-top: 10px; width: 100%; }
    .labels-page .btn-follow { width: 100%; }
}