.profile-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.profile-container {
    background: var(--bg-primary);
}

.loading, .error {
    text-align: center;
    padding: 3rem;
}

.error .btn-primary {
    margin-top: 1rem;
}

.profile-header {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: var(--bg-surface);
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid var(--border);
}

.profile-picture-section {
    flex-shrink: 0;
    text-align: center;
}

.profile-picture {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--border);
}

.profile-picture-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--border);
}

.placeholder-icon {
    font-size: 4rem;
    opacity: 0.5;
}

.btn-edit-picture {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.btn-edit-picture:hover {
    background: var(--primary-hover);
}

.profile-info {
    flex: 1;
}

.profile-name {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: var(--text-primary);
}

.tier-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.profile-meta {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.profile-description {
    padding: 2rem;
    background: var(--bg-surface);
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid var(--border);
    position: relative;
}

.profile-description h3 {
    margin: 0 0 1rem 0;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.profile-description p {
    margin: 0;
    line-height: 1.6;
    color: var(--text-primary) !important;
    background: transparent !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

.profile-description p * {
    color: inherit !important;
    background: transparent !important;
}

.profile-description p span,
.profile-description p div,
.profile-description p font {
    color: inherit !important;
    background: transparent !important;
}

.profile-description p a {
    color: var(--primary, #2563eb) !important;
    text-decoration: underline;
}

.profile-description p a:hover {
    color: var(--primary-hover, #1d4ed8) !important;
}

.editor-toolbar {
    display: flex;
    gap: 0.25rem;
    padding: 0.5rem;
    background: var(--bg-primary, #0f0f1a);
    border: 1px solid var(--border);
    border-bottom: none;
    border-radius: 6px 6px 0 0;
}

.toolbar-btn {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border);
    background: var(--bg-surface);
    color: var(--text-primary);
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.toolbar-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.toolbar-separator {
    width: 1px;
    background: var(--border);
    margin: 0 0.25rem;
}

.bio-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 0 0 6px 6px;
    font-family: inherit;
    resize: vertical;
    background: var(--bg-surface);
    color: var(--text-primary);
    min-height: 120px;
}

.bio-editor {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 0 0 6px 6px;
    background: var(--bg-surface);
    color: var(--text-primary);
    min-height: 120px;
    max-height: 400px;
    overflow-y: auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

.bio-editor:focus {
    outline: none;
    border-color: var(--primary);
}

.bio-textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.editor-hint {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.profile-description.empty {
    text-align: center;
}

.empty-message {
    color: var(--text-secondary);
    font-style: italic;
}

.btn-edit {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.5rem 1rem;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.btn-edit:hover {
    background: var(--border);
}

.profile-stats {
    padding: 2rem;
    background: var(--bg-surface);
    border-radius: 12px;
    margin-top: 1rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border);
}

.profile-stats h3 {
    margin: 0 0 1.5rem 0;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: var(--bg-primary);
    border-radius: 8px;
    border: 1px solid var(--border);
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.stats-section {
    margin-bottom: 1.5rem;
}

.stats-section:last-child {
    margin-bottom: 0;
}

.stats-section h3 {
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stats-hint {
    font-size: 0.75rem;
    font-weight: normal;
    color: var(--text-secondary);
}

.public-stats .stats-grid {
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 1rem;
    background: rgba(37, 99, 235, 0.05);
}

.private-stats .stats-grid {
    border: 2px dashed var(--border);
    border-radius: 12px;
    padding: 1rem;
    background: transparent;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: var(--bg-primary);
    border-radius: 8px;
    border: 1px solid var(--border);
    position: relative;
    cursor: help;
    transition: all 0.2s;
}

.stat-item[draggable="true"] {
    cursor: grab;
}

.stat-item[draggable="true"]:active {
    cursor: grabbing;
}

.stat-item.dragging {
    opacity: 0.5;
    border-color: var(--primary);
}

.stat-item:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.drag-handle {
    position: absolute;
    top: 0.25rem;
    right: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
    opacity: 0.5;
}

.stat-item:hover .drag-handle {
    opacity: 1;
}

.profile-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-invite {
    flex: 1;
    padding: 1rem 1.5rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-invite:hover {
    background: var(--primary-hover);
}

.profile-talks {
    padding: 2rem;
    background: var(--bg-surface);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.profile-talks h3 {
    margin: 0 0 1.5rem 0;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.talks-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.talk-card {
    padding: 1.5rem;
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.talk-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.talk-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.talk-meta {
    font-size: 0.875rem;
    color: var(--text-secondary);
    display: flex;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-picture-section {
        margin: 0 auto;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .btn-edit {
        position: static;
        margin-top: 1rem;
        display: block;
        width: 100%;
    }
}

.btn-preview-public {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.btn-preview-public:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.profile-header {
    position: relative;
    min-height: 200px;
    background-size: cover;
    background-position: center;
}

.header-hover-controls {
    position: absolute;
    z-index: 10;
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.profile-header.header-hovered .header-hover-controls,
.profile-header:hover .header-hover-controls,
.profile-picture-section:hover .header-hover-controls {
    opacity: 1;
    pointer-events: auto;
}

.background-controls {
    top: 1rem;
    right: 1rem;
}

.picture-controls {
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.preview-controls {
    bottom: 1rem;
    right: 1rem;
}

.btn-edit-background,
.btn-reposition-background,
.btn-remove-background {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.2s;
}

.btn-edit-background:hover,
.btn-reposition-background:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-remove-background:hover {
    background: var(--error);
    border-color: var(--error);
}

.btn-edit-picture {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    border: 2px solid white;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.btn-edit-picture:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
}

.profile-picture-section {
    position: relative;
}

.background-edit-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    z-index: 20;
}

.background-edit-hint {
    color: white;
    font-size: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.background-edit-controls {
    display: flex;
    gap: 1rem;
}

.btn-bg-cancel,
.btn-bg-save {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-bg-cancel {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-bg-cancel:hover {
    background: rgba(255, 255, 255, 0.3);
}

.btn-bg-save {
    background: var(--primary);
    color: white;
}

.btn-bg-save:hover {
    background: var(--primary-hover);
}

.background-uploading {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    z-index: 25;
}

.uploading-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
}

.stat-item {
    padding: 0.75rem;
}

.stat-value {
    font-size: 1.5rem;
}

.stat-label {
    font-size: 0.75rem;
}

.profile-header.has-video-bg {
    position: relative;
    overflow: hidden;
}

.video-background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.video-background-iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.video-background-iframe iframe {
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.profile-header.has-video-bg .profile-picture-section,
.profile-header.has-video-bg .profile-info,
.profile-header.has-video-bg .background-controls,
.profile-header.has-video-bg .preview-controls {
    position: relative;
    z-index: 1;
}

.btn-video-background {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--bg-surface);
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.btn-video-background:hover {
    background: var(--primary);
    transform: scale(1.1);
}

.btn-video-background.active {
    background: var(--primary);
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

.video-background-modal {
    max-width: 500px;
}

.video-url-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--bg-surface);
    color: var(--text-primary);
    font-size: 0.9rem;
}

.current-video-preview {
    background: var(--bg-surface-hover);
    padding: 0.75rem;
    border-radius: 6px;
    margin-top: 1rem;
    color: var(--success);
}

.btn-danger {
    background: var(--error);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
}

.btn-danger:hover:not(:disabled) {
    opacity: 0.9;
}

.btn-danger:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.profile-media-slots {
    background: var(--bg-surface);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border);
}

.media-slots-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.media-slots-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.btn-add-media {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: opacity 0.2s;
}

.btn-add-media:hover {
    opacity: 0.9;
}

.media-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.media-slot {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
}

.media-slot-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-slot-thumbnail {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    cursor: pointer;
}

.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: transform 0.2s, background 0.2s;
}

.media-slot:hover .video-play-overlay {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--primary);
}

.media-slot-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.5rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    font-size: 0.85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.media-slot-actions {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    display: flex;
    gap: 0.25rem;
    opacity: 0;
    transition: opacity 0.2s;
}

.media-slot:hover .media-slot-actions {
    opacity: 1;
}

.btn-edit-slot, .btn-delete-slot {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.btn-edit-slot {
    background: rgba(99, 102, 241, 0.9);
}

.btn-delete-slot {
    background: rgba(239, 68, 68, 0.9);
}

.btn-edit-slot:hover, .btn-delete-slot:hover {
    transform: scale(1.1);
}

.media-slot-modal .modal-body {
    padding: 1.5rem;
}

.media-type-selector {
    display: flex;
    gap: 0.5rem;
}

.media-type-btn {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    background: var(--bg-tertiary);
    color: var(--text-primary);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s;
}

.media-type-btn.active {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
}

.media-type-btn:hover:not(.active) {
    background: var(--bg-surface);
}

.preview-image {
    margin-top: 1rem;
    border-radius: 8px;
    overflow: hidden;
    max-width: 300px;
}

.preview-image img {
    width: 100%;
    height: auto;
    display: block;
}

.upload-progress {
    margin-top: 0.5rem;
    color: var(--primary);
    font-size: 0.9rem;
}

.file-input {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background: var(--bg-tertiary);
    border: 2px dashed var(--border);
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.file-input:hover {
    border-color: var(--primary);
}

.profile-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.social-link-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    text-decoration: none;
    transition: all 0.2s;
}

.social-link-item:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

.social-icon {
    font-size: 1.2rem;
}

.social-link-actions {
    position: absolute;
    top: -8px;
    right: -8px;
    display: none;
    gap: 2px;
}

.social-link-item:hover .social-link-actions {
    display: flex;
}

.btn-edit-social, .btn-delete-social {
    width: 20px;
    height: 20px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.btn-edit-social {
    background: var(--primary);
    color: white;
}

.btn-delete-social {
    background: var(--error);
    color: white;
}

.btn-add-social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: 2px dashed var(--border);
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.btn-add-social:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.social-link-modal .modal-body {
    padding: 1.5rem;
}

.platform-select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--bg-tertiary);
    color: var(--text-primary);
    font-size: 1rem;
    cursor: pointer;
}

.platform-select:focus {
    outline: none;
    border-color: var(--primary);
}

.url-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--bg-tertiary);
    color: var(--text-primary);
    font-size: 1rem;
}

.url-input:focus {
    outline: none;
    border-color: var(--primary);
}

.url-input.input-error {
    border-color: var(--error, #ef4444);
}

.validation-error {
    color: var(--error, #ef4444);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.url-hint {
    color: var(--text-secondary);
    font-size: 0.8rem;
    margin-top: 0.35rem;
}

.profile-follow-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.follow-stat {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.follow-stat strong {
    color: var(--text-primary);
    font-weight: 600;
}

.follow-stat-clickable {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: background 0.2s;
}

.follow-stat-clickable:hover {
    background: var(--bg-surface);
}

.followers-modal {
    max-width: 450px;
    width: 90%;
}

.followers-modal .modal-body {
    max-height: 400px;
    overflow-y: auto;
    padding: 0;
}

.followers-list {
    display: flex;
    flex-direction: column;
}

.follower-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
}

.follower-item:hover {
    background: var(--bg-surface);
}

.follower-item:last-child {
    border-bottom: none;
}

.follower-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.follower-pic-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.follower-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.follower-name {
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.follower-username {
    font-size: 0.85rem;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.follower-meta {
    flex-shrink: 0;
}

.btn-load-more {
    margin: 1rem;
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.btn-load-more:hover {
    background: var(--primary-hover);
}

.btn-load-more:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.talks-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.talks-header h3 {
    margin: 0;
}

.btn-toggle-filters {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.2s;
}

.btn-toggle-filters:hover {
    background: var(--bg-surface-hover);
    color: var(--text-primary);
}

.talk-filters {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.filter-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-group {
    flex: 1;
    min-width: 150px;
}

.filter-group label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.4rem;
}

.filter-group select,
.filter-group input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: var(--bg-primary);
    color: var(--text-primary);
    font-size: 0.9rem;
}

.filter-group select:focus,
.filter-group input:focus {
    outline: none;
    border-color: var(--primary);
}
