.page-header {
    padding: 20px 0 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 30px;
}
.page-header h1 {
    font-size: 32px;
    margin: 0 0 10px 0;
    color: var(--accent);
}
.header-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

/* Statistics */
.stats {
    max-width: 1400px;
    margin: 0 auto 20px;
    color: var(--text-muted);
    font-size: 14px;
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 10px;
    border-left: 3px solid var(--accent);
}
.active-params {
    margin-bottom: 10px;
    line-height: 1.8;
}
.param-tag {
    background: rgba(56, 189, 248, 0.1);
    color: var(--accent);
    padding: 2px 8px;
    border-radius: 4px;
    margin-right: 5px;
    font-size: 13px;
    white-space: nowrap;
}
.genres-row {
    color: #94a3b8;
    font-size: 14px;
    margin-top: 5px;
}
.sort-mode-row {
    font-size: 13px;
    color: #fff;
    margin-top: 5px;
    opacity: 0.8;
}
.total-count {
    margin-top: 10px;
    font-size: 14px;
    color: var(--text-muted);
}

/* Mobile */
@media (max-width: 768px) {
    .header-top-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .filter-controls {
        width: 100%;
    }
    .btn-toggle-filter {
        width: 100%;
        justify-content: center;
    }
}