.settings-container {
    max-width: 700px;
}

.settings-container h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 32px;
    color: var(--text-primary);
}

.settings-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.setting-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.setting-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.theme-options {
    display: flex;
    gap: 16px;
}

.theme-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.theme-option:hover {
    border-color: var(--border-light);
}

.theme-option.active {
    border-color: var(--accent-orange);
}

.theme-option span {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
}

.theme-preview {
    width: 80px;
    height: 50px;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.dark-preview {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.light-preview {
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
}

.midnight-preview {
    background: linear-gradient(135deg, #000000 0%, #0f0f0f 100%);
}

.color-options {
    display: flex;
    gap: 12px;
}

.color-option {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
}

.color-option:hover {
    transform: scale(1.1);
}

.color-option.active {
    border-color: var(--text-primary);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.slider-container {
    display: flex;
    align-items: center;
    gap: 16px;
}

.slider {
    flex: 1;
    height: 4px;
    background: var(--bg-card);
    border-radius: 2px;
    outline: none;
    -webkit-appearance: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: var(--accent-orange);
    cursor: pointer;
    border-radius: 50%;
}

.slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: var(--accent-orange);
    cursor: pointer;
    border-radius: 50%;
    border: none;
}

.slider-value {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    min-width: 40px;
}

.toggle-group {
    display: flex;
    gap: 8px;
}

.toggle-btn {
    padding: 8px 20px;
    background: var(--bg-card);
    color: var(--text-secondary);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
}

.toggle-btn:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.toggle-btn.active {
    background: var(--accent-orange);
    color: var(--text-primary);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-secondary);
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--accent-orange);
}

.checkbox-label:hover span {
    color: var(--text-primary);
}

.reset-btn {
    margin-top: 40px;
    padding: 12px 24px;
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.reset-btn:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-light);
}